Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for aExpr (0.02 sec)

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

    // Expressions
    
    func NewName(pos Pos, value string) *Name {
    	n := new(Name)
    	n.pos = pos
    	n.Value = value
    	return n
    }
    
    type (
    	Expr interface {
    		Node
    		typeInfo
    		aExpr()
    	}
    
    	// Placeholder for an expression that failed to parse
    	// correctly and where we can't provide a better node.
    	BadExpr struct {
    		expr
    	}
    
    	// Value
    	Name struct {
    		Value string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top