aboutsummaryrefslogtreecommitdiff
path: root/src/go/types/api_go2go.go
blob: 45ce10252cbb72b32a664a15bdab2d042da44f4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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.

package types

import (
	"go/ast"
)

// This file exposes additional API methods related to type parameters, for use
// in the go2go rewriter.

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
}