Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Expression ¶
type Expression interface {
Node
// contains filtered or unexported methods
}
type Identifier ¶
func (*Identifier) TokenLiteral ¶
func (i *Identifier) TokenLiteral() string
type LetStatement ¶
type LetStatement struct {
Token token.Token
Name *Identifier
Value Expression
}
func (*LetStatement) TokenLiteral ¶
func (ls *LetStatement) TokenLiteral() string
type Program ¶
type Program struct {
Statements []Statement //slice
}
func (*Program) TokenLiteral ¶
Click to show internal directories.
Click to hide internal directories.