Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for qualifiedIdent (0.2 sec)

  1. src/cmd/compile/internal/syntax/parser.go

    // Literal     = BasicLit | CompositeLit | FunctionLit .
    // BasicLit    = int_lit | float_lit | imaginary_lit | rune_lit | string_lit .
    // OperandName = identifier | QualifiedIdent.
    func (p *parser) operand(keep_parens bool) Expr {
    	if trace {
    		defer p.trace("operand " + p.tok.String())()
    	}
    
    	switch p.tok {
    	case _Name:
    		return p.name()
    
    	case _Literal:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
Back to top