Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for selectors (0.2 sec)

  1. doc/go1.17_spec.html

    f(3.1415, true)
    Point{1, 2}
    m["foo"]
    s[i : j + 1]
    obj.color
    f.p[i].x()
    </pre>
    
    
    <h3 id="Selectors">Selectors</h3>
    
    <p>
    For a <a href="#Primary_expressions">primary expression</a> <code>x</code>
    that is not a <a href="#Package_clause">package name</a>, the
    <i>selector expression</i>
    </p>
    
    <pre>
    x.f
    </pre>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. doc/go_spec.html

    f(3.1415, true)
    Point{1, 2}
    m["foo"]
    s[i : j + 1]
    obj.color
    f.p[i].x()
    </pre>
    
    
    <h3 id="Selectors">Selectors</h3>
    
    <p>
    For a <a href="#Primary_expressions">primary expression</a> <code>x</code>
    that is not a <a href="#Package_clause">package name</a>, the
    <i>selector expression</i>
    </p>
    
    <pre>
    x.f
    </pre>
    
    <p>
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/parse.go

    		abistr := p.get(scanner.Ident).String()
    		if !p.allowABI {
    			if issueError {
    				p.errorf("ABI selector only permitted when compiling runtime, reference was to %q", name)
    			}
    		} else {
    			theabi, valid := obj.ParseABI(abistr)
    			if !valid {
    				if issueError {
    					p.errorf("malformed ABI selector %q in reference to %q",
    						abistr, name)
    				}
    			} else {
    				abi = theabi
    			}
    		}
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/pseudo_test.go

    		{"TEXT", "$:0:(SB, 0, $1", "expected '(', found 0"},          // Issue 12468.
    		{"TEXT", "@B(SB),0,$0", "expected '(', found B"},             // Issue 23580.
    		{"TEXT", "foo<ABIInternal>(SB),0", "ABI selector only permitted when compiling runtime, reference was to \"foo\""},
    		{"FUNCDATA", "", "expect two operands for FUNCDATA"},
    		{"FUNCDATA", "(SB ", "expect two operands for FUNCDATA"},
    		{"DATA", "", "expect two operands for DATA"},
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 07:48:38 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/operand_test.go

    	{"[X0,X1,X2,X3]", "register list: expected '-' after `[X0`, found ','"},
    	{"$foo<ABI0>", "ABI selector only permitted when compiling runtime, reference was to \"foo\""},
    }
    
    var amd64BadOperandRuntimeTests = []badOperandTest{
    	{"$foo<bletch>", "malformed ABI selector \"bletch\" in reference to \"foo\""},
    }
    
    var x86OperandTests = []operandTest{
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 18:31:05 GMT 2023
    - 23.9K bytes
    - Viewed (0)
  6. api/go1.5.txt

    pkg go/types, type Info struct, Implicits map[ast.Node]Object
    pkg go/types, type Info struct, InitOrder []*Initializer
    pkg go/types, type Info struct, Scopes map[ast.Node]*Scope
    pkg go/types, type Info struct, Selections map[*ast.SelectorExpr]*Selection
    pkg go/types, type Info struct, Types map[ast.Expr]TypeAndValue
    pkg go/types, type Info struct, Uses map[*ast.Ident]Object
    pkg go/types, type Initializer struct
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    			expr = &ast.CallExpr{Fun: expr}
    		}
    	case ctxSelector:
    		if r.Name.Kind == "var" {
    			expr = &ast.StarExpr{Star: (*r.Expr).Pos(), X: expr}
    		} else {
    			error_(r.Pos(), "only C variables allowed in selector expression %s", fixGo(r.Name.Go))
    		}
    	case ctxType:
    		if r.Name.Kind != "type" {
    			error_(r.Pos(), "expression C.%s used as type", fixGo(r.Name.Go))
    		} else if r.Name.Type == nil {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg unicode, var Ugaritic *RangeTable
    pkg unicode, var Unified_Ideograph *RangeTable
    pkg unicode, var Upper *RangeTable
    pkg unicode, var Vai *RangeTable
    pkg unicode, var Variation_Selector *RangeTable
    pkg unicode, var White_Space *RangeTable
    pkg unicode, var Yi *RangeTable
    pkg unicode, var Z *RangeTable
    pkg unicode, var Zl *RangeTable
    pkg unicode, var Zp *RangeTable
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top