Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for ParenExpr (0.17 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Package.Imports", Field, 0},
    		{"Package.Name", Field, 0},
    		{"Package.Scope", Field, 0},
    		{"PackageExports", Func, 0},
    		{"ParenExpr", Type, 0},
    		{"ParenExpr.Lparen", Field, 0},
    		{"ParenExpr.Rparen", Field, 0},
    		{"ParenExpr.X", Field, 0},
    		{"Pkg", Const, 0},
    		{"Print", Func, 0},
    		{"RECV", Const, 0},
    		{"RangeStmt", Type, 0},
    		{"RangeStmt.Body", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    			"rune", "string",
    			"uint", "uint8", "uint16", "uint32", "uint64", "uintptr":
    
    			return true
    		}
    		if strings.HasPrefix(t.Name, "_Ctype_") {
    			return true
    		}
    	case *ast.ParenExpr:
    		return p.isType(t.X)
    	case *ast.StarExpr:
    		return p.isType(t.X)
    	case *ast.ArrayType, *ast.StructType, *ast.FuncType, *ast.InterfaceType,
    		*ast.MapType, *ast.ChanType:
    
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg go/ast, type Package struct, Name string
    pkg go/ast, type Package struct, Scope *Scope
    pkg go/ast, type ParenExpr struct
    pkg go/ast, type ParenExpr struct, Lparen token.Pos
    pkg go/ast, type ParenExpr struct, Rparen token.Pos
    pkg go/ast, type ParenExpr struct, X Expr
    pkg go/ast, type RangeStmt struct
    pkg go/ast, type RangeStmt struct, Body *BlockStmt
    pkg go/ast, type RangeStmt struct, For token.Pos
    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