Documentation ¶
Overview ¶
Package typeparams provides functions to work with type parameter data stored in the AST, while these AST changes are guarded by a build constraint.
Index ¶
Constants ¶
View Source
const ( DisallowTypeSets = 1 << 29 // Disallow eliding 'interface' in constraint type sets. DisallowParsing = 1 << 30 // Disallow type parameters entirely. )
'Hidden' parser modes to control the parsing of type-parameter related features.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type IndexExpr ¶
type IndexExpr struct { Orig ast.Expr // the wrapped expr, which may be distinct from the IndexListExpr below. *ast.IndexListExpr }
IndexExpr wraps an ast.IndexExpr or ast.IndexListExpr.
Orig holds the original ast.Expr from which this IndexExpr was derived.
func UnpackIndexExpr ¶
Click to show internal directories.
Click to hide internal directories.