Documentation
¶
Index ¶
Constants ¶
View Source
const ( ILLEGAL = "ILLEGAL" EOF = "EOF" // Identifiers + literals IDENT = "IDENT" // add, foobar, x, y, ... INT = "INT" // 1343456 STRING = "STRING" // "foobar" REGEXP = "REGEXP" // /^v1.0/ SHELL = "SHELL" // $branch, ${branch:-fallback} BANG = "!" DOT = "." // Comparison Operators EQ = "==" NOT_EQ = "!=" RE_EQ = "=~" RE_NOT_EQ = "!~" INCLUDES = "includes" // Boolean Operators AND = "&&" OR = "||" // Delimiters QUESTION = "?" COLON = ":" COMMA = "," LPAREN = "(" RPAREN = ")" LBRACKET = "[" RBRACKET = "]" // Keywords TRUE = "TRUE" FALSE = "FALSE" NULL = "NULL" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
Click to show internal directories.
Click to hide internal directories.