Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var TokenList []string
View Source
var TokenMap = map[string]Token{}/* 133 elements not displayed */
TokenMap maps source code string tokens to types when strings can be represented directly. Not all types will be represented here.
Functions ¶
This section is empty.
Types ¶
type ItemList ¶
type ItemList struct { // Items contains all the items in the list. Items []Item // Position is the current position the set is at in the token slice. Position int }
List represents an ordered set of tokens.
func (*ItemList) PushKeyword ¶
func (*ItemList) PushStream ¶
type Token ¶
type Token int
const ( EOF Token = iota HTML PHP PHPBegin PHPEnd PHPToken Error Space Function Static Self Parent Final FunctionName TypeHint VariableOperator BlockBegin BlockEnd Global Namespace Use Comment IgnoreErrorOperator Return ArgumentType ArgumentName Comma StatementEnd Echo Print If Else ElseIf For Foreach EndIf EndFor EndForeach EndWhile EndSwitch AsOperator While Continue Break Do OpenParen CloseParen Switch Case Default Try Catch Finally Throw Class Abstract Private Public Protected Interface Implements Extends NewOperator Const Null StringLiteral NumberLiteral BooleanLiteral ShellCommand Identifier AssignmentOperator NegationOperator AdditionOperator SubtractionOperator MultOperator ConcatenationOperator UnaryOperator ComparisonOperator InstanceofOperator AndOperator OrOperator WrittenAndOperator WrittenXorOperator WrittenOrOperator ObjectOperator ScopeResolutionOperator CastOperator Var Array ArrayKeyOperator ArrayLookupOperatorLeft ArrayLookupOperatorRight List BitwiseShiftOperator StrongEqualityOperator StrongNotEqualityOperator EqualityOperator NotEqualityOperator AmpersandOperator BitwiseXorOperator BitwiseOrOperator BitwiseNotOperator TernaryOperator1 TernaryOperator2 Declare Include Exit )
type Type ¶
type Type int
const ( InvalidType Type = 1 << iota KeywordType // keyword, e.g. "static", "function" LiteralType // literal, e.g. 234, "a string", false MarkerType // marker for code blocks and groupings, e.g. {, ( OperatorType // operator, e.g. +, ===, $ IdentifierType // identifier, e.g. StdClass Significant = KeywordType | LiteralType | MarkerType | IdentifierType CommentType WhitespaceType )
Click to show internal directories.
Click to hide internal directories.