Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 73 of 73 for FuncType (0.12 sec)

  1. src/cmd/compile/internal/types2/api_test.go

    		}
    
    		// scope descriptions must match
    		for node, scope := range info.Scopes {
    			var kind string
    			switch node.(type) {
    			case *syntax.File:
    				kind = "file"
    			case *syntax.FuncType:
    				kind = "func"
    			case *syntax.BlockStmt:
    				kind = "block"
    			case *syntax.IfStmt:
    				kind = "if"
    			case *syntax.SwitchStmt:
    				kind = "switch"
    			case *syntax.SelectStmt:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  2. src/go/types/api_test.go

    		}
    
    		// scope descriptions must match
    		for node, scope := range info.Scopes {
    			kind := "<unknown node kind>"
    			switch node.(type) {
    			case *ast.File:
    				kind = "file"
    			case *ast.FuncType:
    				kind = "func"
    			case *ast.BlockStmt:
    				kind = "block"
    			case *ast.IfStmt:
    				kind = "if"
    			case *ast.SwitchStmt:
    				kind = "switch"
    			case *ast.TypeSwitchStmt:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg go/ast, type FuncDecl struct, Type *FuncType
    pkg go/ast, type FuncLit struct
    pkg go/ast, type FuncLit struct, Body *BlockStmt
    pkg go/ast, type FuncLit struct, Type *FuncType
    pkg go/ast, type FuncType struct
    pkg go/ast, type FuncType struct, Func token.Pos
    pkg go/ast, type FuncType struct, Params *FieldList
    pkg go/ast, type FuncType struct, Results *FieldList
    pkg go/ast, type GenDecl struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top