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. RESERVEDprivate java.util.Map<java.lang.String,Variable>SymbolTable. tableMethods in com.googlecode.aviator.lexer that return Variable Modifier and Type Method Description VariableSymbolTable. getVariable(java.lang.String name)Get variable by nameVariableSymbolTable. reserve(java.lang.String lexeme)static VariableSymbolTable. 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 booleanSymbolTable. isReservedKeyword(Variable v)Token<?>SymbolTable. reserve(Variable variable)private static voidSymbolTable. reserveKeyword(Variable v)static VariableSymbolTable. 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 VariableVariable. BREAKreturn keywordstatic VariableVariable. CATCHstatic VariableVariable. CONTINUEreturn keywordstatic VariableVariable. ELSEelse keywordstatic VariableVariable. ELSIFelsif keywordstatic VariableVariable. ENDend keywordstatic VariableVariable. FALSEBoolean value falsestatic VariableVariable. FINALLYstatic VariableVariable. FNfn keywordstatic VariableVariable. FORfor keywordstatic VariableVariable. IFif keywordstatic VariableVariable. INin keywordstatic VariableVariable. LAMBDALambda keywordstatic VariableVariable. LETlet keywordstatic VariableVariable. NEWstatic VariableVariable. NILBoolean value falsestatic VariableVariable. RETURNreturn keywordstatic VariableVariable. THROWstatic VariableVariable. TRUEBoolean value truestatic VariableVariable. TRYelsif keywordstatic VariableVariable. USEstatic VariableVariable. WHILEwhile keyword -
Uses of Variable in com.googlecode.aviator.utils
Fields in com.googlecode.aviator.utils declared as Variable Modifier and Type Field Description static VariableConstants. CATCH_HANDLER_VARstatic VariableConstants. IfReturnFnstatic VariableConstants. NEW_VARstatic VariableConstants. REDUCER_LOOPstatic VariableConstants. ReducerEmptyValstatic VariableConstants. ReducerFnstatic VariableConstants. SEQ_LIST_VARstatic VariableConstants. THROW_VARstatic VariableConstants. THROWABLE_VARstatic VariableConstants. TRY_VARstatic VariableConstants. USE_VARstatic VariableConstants. WithMetaFn
-