Uses of Class
com.googlecode.aviator.lexer.token.Variable
-
Packages that use Variable Package Description com.googlecode.aviator.lexer com.googlecode.aviator.lexer.token com.googlecode.aviator.utils -
-
Uses of Variable in com.googlecode.aviator.lexer
Fields in com.googlecode.aviator.lexer with type parameters of type Variable Modifier and Type Field Description private static java.util.Map<java.lang.String,Variable>
SymbolTable. RESERVED
private java.util.Map<java.lang.String,Variable>
SymbolTable. table
Methods in com.googlecode.aviator.lexer that return Variable Modifier and Type Method Description Variable
SymbolTable. getVariable(java.lang.String name)
Get variable by nameVariable
SymbolTable. reserve(java.lang.String lexeme)
static Variable
SymbolTable. tryReserveKeyword(Variable var)
Try to reserve key word, return the reserved variable if success, otherwise return itself.Methods in com.googlecode.aviator.lexer with parameters of type Variable Modifier and Type Method Description static boolean
SymbolTable. isReservedKeyword(Variable v)
Token<?>
SymbolTable. reserve(Variable variable)
private static void
SymbolTable. reserveKeyword(Variable v)
static Variable
SymbolTable. tryReserveKeyword(Variable var)
Try to reserve key word, return the reserved variable if success, otherwise return itself. -
Uses of Variable in com.googlecode.aviator.lexer.token
Fields in com.googlecode.aviator.lexer.token declared as Variable Modifier and Type Field Description static Variable
Variable. BREAK
return keywordstatic Variable
Variable. CATCH
static Variable
Variable. CONTINUE
return keywordstatic Variable
Variable. ELSE
else keywordstatic Variable
Variable. ELSIF
elsif keywordstatic Variable
Variable. END
end keywordstatic Variable
Variable. FALSE
Boolean value falsestatic Variable
Variable. FINALLY
static Variable
Variable. FN
fn keywordstatic Variable
Variable. FOR
for keywordstatic Variable
Variable. IF
if keywordstatic Variable
Variable. IN
in keywordstatic Variable
Variable. LAMBDA
Lambda keywordstatic Variable
Variable. LET
let keywordstatic Variable
Variable. NEW
static Variable
Variable. NIL
Boolean value falsestatic Variable
Variable. RETURN
return keywordstatic Variable
Variable. THROW
static Variable
Variable. TRUE
Boolean value truestatic Variable
Variable. TRY
elsif keywordstatic Variable
Variable. USE
static Variable
Variable. WHILE
while keyword -
Uses of Variable in com.googlecode.aviator.utils
Fields in com.googlecode.aviator.utils declared as Variable Modifier and Type Field Description static Variable
Constants. CATCH_HANDLER_VAR
static Variable
Constants. IfReturnFn
static Variable
Constants. NEW_VAR
static Variable
Constants. REDUCER_LOOP
static Variable
Constants. ReducerEmptyVal
static Variable
Constants. ReducerFn
static Variable
Constants. SEQ_LIST_VAR
static Variable
Constants. THROW_VAR
static Variable
Constants. THROWABLE_VAR
static Variable
Constants. TRY_VAR
static Variable
Constants. USE_VAR
static Variable
Constants. WithMetaFn
-