Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BasicLit ¶
type BasicLit struct { ValuePos token.Pos // literal position Kind token.Token // token.STRING or token.CHAR Value string }
BasicLit: STRING | CHAR
type BinaryExpr ¶
type BinaryExpr struct { X Expr // left operand OpPos token.Pos // operator position Op token.Token // operator: token.REM (list operator) Y Expr // right operand }
BinaryExpr: R1 % R2
func (*BinaryExpr) End ¶
func (p *BinaryExpr) End() token.Pos
func (*BinaryExpr) Pos ¶
func (p *BinaryExpr) Pos() token.Pos
type Expr ¶
type Expr interface { Node // contains filtered or unexported methods }
Expr: Ident, BasicLit, Choice, Sequence, UnaryExpr, BinaryExpr
Click to show internal directories.
Click to hide internal directories.