MCPcopy Index your code
hub / github.com/AlaSQL/alasql / lex

Function lex

src/alasqlparser.js:2115–2123  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2113
2114_token_stack:
2115 var lex = function () {
2116 var token;
2117 token = lexer.lex() || EOF;
2118 // if token isn't its numeric value, convert
2119 if (typeof token !== 'number') {
2120 token = self.symbols_[token] || token;
2121 }
2122 return token;
2123 }
2124
2125 var symbol, preErrorSymbol, state, action, a, r, yyval = {}, p, len, newState, expected;
2126 while (true) {

Callers 1

alasqlparser.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected