aboutsummaryrefslogtreecommitdiff
path: root/src/go/types/api_go1.18.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/go/types/api_go1.18.go')
-rw-r--r--src/go/types/api_go1.18.go22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/go/types/api_go1.18.go b/src/go/types/api_go1.18.go
new file mode 100644
index 0000000000..d98f4ef0dc
--- /dev/null
+++ b/src/go/types/api_go1.18.go
@@ -0,0 +1,22 @@
+// Copyright 2021 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+//go:build go1.18
+// +build go1.18
+
+package types
+
+import (
+ "go/ast"
+)
+
+type Inferred = _Inferred
+
+func GetInferred(info *Info) map[ast.Expr]Inferred {
+ return info._Inferred
+}
+
+func SetInferred(info *Info, inferred map[ast.Expr]Inferred) {
+ info._Inferred = inferred
+}