- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for typeSpecTypeParams (0.2 sec)
-
src/cmd/cgo/ast_go1.go
error_(token.NoPos, "unexpected type %T in walk", x) panic("unexpected type") } func funcTypeTypeParams(n *ast.FuncType) *ast.FieldList { return nil } func typeSpecTypeParams(n *ast.TypeSpec) *ast.FieldList { return nil
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Nov 30 21:45:10 UTC 2022 - 578 bytes - Viewed (0) -
src/cmd/cgo/ast_go118.go
case *ast.IndexListExpr: f.walk(&n.X, ctxExpr, visit) f.walk(n.Indices, ctxExpr, visit) } } func funcTypeTypeParams(n *ast.FuncType) *ast.FieldList { return n.TypeParams } func typeSpecTypeParams(n *ast.TypeSpec) *ast.FieldList { return n.TypeParams
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Nov 30 21:45:10 UTC 2022 - 730 bytes - Viewed (0) -
src/cmd/cgo/ast.go
if len(n.Names) == 2 && len(n.Values) == 1 { f.walk(&n.Values[0], ctxAssign2, visit) } else { f.walk(n.Values, ctxExpr, visit) } case *ast.TypeSpec: if tparams := typeSpecTypeParams(n); tparams != nil { f.walk(tparams, ctxParam, visit) } f.walk(&n.Type, ctxType, visit) case *ast.BadDecl: case *ast.GenDecl: f.walk(n.Specs, ctxSpec, visit) case *ast.FuncDecl:
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Oct 14 15:47:06 UTC 2024 - 14.3K bytes - Viewed (0)