2014-11-05 13:48:36 -08:00
|
|
|
import {FIELD, int, isBlank, BaseException, StringWrapper} from 'facade/lang';
|
2014-10-28 12:22:38 -04:00
|
|
|
import {ListWrapper, List} from 'facade/collection';
|
2014-11-05 15:38:44 -08:00
|
|
|
import {Lexer, EOF, Token, $PERIOD, $COLON, $SEMICOLON, $LBRACKET, $RBRACKET,
|
|
|
|
$COMMA, $LBRACE, $RBRACE, $LPAREN, $RPAREN} from './lexer';
|
2014-10-28 12:22:38 -04:00
|
|
|
import {ClosureMap} from './closure_map';
|
2014-11-04 10:19:37 -08:00
|
|
|
import {
|
|
|
|
AST,
|
|
|
|
ImplicitReceiver,
|
2014-11-05 17:10:37 -08:00
|
|
|
AccessMember,
|
2014-11-04 10:19:37 -08:00
|
|
|
LiteralPrimitive,
|
|
|
|
Expression,
|
|
|
|
Binary,
|
|
|
|
PrefixNot,
|
|
|
|
Conditional,
|
2014-11-05 10:00:19 -08:00
|
|
|
Formatter,
|
|
|
|
Assignment,
|
|
|
|
Chain,
|
2014-11-05 13:48:36 -08:00
|
|
|
KeyedAccess,
|
|
|
|
LiteralArray,
|
2014-11-05 15:38:44 -08:00
|
|
|
LiteralMap,
|
|
|
|
MethodCall,
|
2014-11-18 16:38:36 -08:00
|
|
|
FunctionCall,
|
|
|
|
TemplateBindings,
|
|
|
|
TemplateBinding,
|
|
|
|
ASTWithSource
|
2014-11-04 10:19:37 -08:00
|
|
|
} from './ast';
|
2014-10-28 12:22:38 -04:00
|
|
|
|
|
|
|
var _implicitReceiver = new ImplicitReceiver();
|
|
|
|
|
2014-09-26 13:52:12 -07:00
|
|
|
export class Parser {
|
2014-11-21 21:19:23 -08:00
|
|
|
_lexer:Lexer;
|
|
|
|
_closureMap:ClosureMap;
|
2014-10-28 12:22:38 -04:00
|
|
|
constructor(lexer:Lexer, closureMap:ClosureMap){
|
|
|
|
this._lexer = lexer;
|
|
|
|
this._closureMap = closureMap;
|
|
|
|
}
|
|
|
|
|
2014-11-18 16:38:36 -08:00
|
|
|
parseAction(input:string):ASTWithSource {
|
2014-10-28 12:22:38 -04:00
|
|
|
var tokens = this._lexer.tokenize(input);
|
2014-11-18 16:38:36 -08:00
|
|
|
var ast = new _ParseAST(input, tokens, this._closureMap, true).parseChain();
|
|
|
|
return new ASTWithSource(ast, input);
|
2014-11-04 15:51:56 -08:00
|
|
|
}
|
|
|
|
|
2014-11-18 16:38:36 -08:00
|
|
|
parseBinding(input:string):ASTWithSource {
|
2014-11-04 15:51:56 -08:00
|
|
|
var tokens = this._lexer.tokenize(input);
|
2014-11-18 16:38:36 -08:00
|
|
|
var ast = new _ParseAST(input, tokens, this._closureMap, false).parseChain();
|
|
|
|
return new ASTWithSource(ast, input);
|
|
|
|
}
|
|
|
|
|
|
|
|
parseTemplateBindings(input:string):List<TemplateBinding> {
|
|
|
|
var tokens = this._lexer.tokenize(input);
|
|
|
|
return new _ParseAST(input, tokens, this._closureMap, false).parseTemplateBindings();
|
2014-10-28 12:22:38 -04:00
|
|
|
}
|
2014-09-26 13:52:12 -07:00
|
|
|
}
|
2014-10-28 12:22:38 -04:00
|
|
|
|
|
|
|
class _ParseAST {
|
2014-11-21 21:19:23 -08:00
|
|
|
input:string;
|
|
|
|
tokens:List<Token>;
|
|
|
|
closureMap:ClosureMap;
|
|
|
|
parseAction:boolean;
|
|
|
|
index:int;
|
2014-11-04 15:51:56 -08:00
|
|
|
constructor(input:string, tokens:List, closureMap:ClosureMap, parseAction:boolean) {
|
2014-11-03 17:25:16 -08:00
|
|
|
this.input = input;
|
2014-10-28 12:22:38 -04:00
|
|
|
this.tokens = tokens;
|
|
|
|
this.index = 0;
|
|
|
|
this.closureMap = closureMap;
|
2014-11-04 15:51:56 -08:00
|
|
|
this.parseAction = parseAction;
|
2014-10-28 12:22:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
peek(offset:int):Token {
|
|
|
|
var i = this.index + offset;
|
|
|
|
return i < this.tokens.length ? this.tokens[i] : EOF;
|
|
|
|
}
|
|
|
|
|
|
|
|
get next():Token {
|
|
|
|
return this.peek(0);
|
|
|
|
}
|
|
|
|
|
2014-11-03 17:25:16 -08:00
|
|
|
get inputIndex():int {
|
|
|
|
return (this.index < this.tokens.length) ? this.next.index : this.input.length;
|
|
|
|
}
|
|
|
|
|
2014-10-28 12:22:38 -04:00
|
|
|
advance() {
|
|
|
|
this.index ++;
|
|
|
|
}
|
|
|
|
|
|
|
|
optionalCharacter(code:int):boolean {
|
|
|
|
if (this.next.isCharacter(code)) {
|
|
|
|
this.advance();
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-05 10:00:19 -08:00
|
|
|
expectCharacter(code:int) {
|
|
|
|
if (this.optionalCharacter(code)) return;
|
2014-11-05 13:48:36 -08:00
|
|
|
this.error(`Missing expected ${StringWrapper.fromCharCode(code)}`);
|
2014-11-05 10:00:19 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-30 23:47:22 -07:00
|
|
|
optionalOperator(op:string):boolean {
|
|
|
|
if (this.next.isOperator(op)) {
|
|
|
|
this.advance();
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-05 10:00:19 -08:00
|
|
|
expectOperator(operator:string) {
|
|
|
|
if (this.optionalOperator(operator)) return;
|
|
|
|
this.error(`Missing expected operator ${operator}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
expectIdentifierOrKeyword():string {
|
|
|
|
var n = this.next;
|
|
|
|
if (!n.isIdentifier() && !n.isKeyword()) {
|
|
|
|
this.error(`Unexpected token ${n}, expected identifier or keyword`)
|
|
|
|
}
|
|
|
|
this.advance();
|
|
|
|
return n.toString();
|
|
|
|
}
|
|
|
|
|
2014-11-05 13:48:36 -08:00
|
|
|
expectIdentifierOrKeywordOrString():string {
|
|
|
|
var n = this.next;
|
|
|
|
if (!n.isIdentifier() && !n.isKeyword() && !n.isString()) {
|
2014-11-06 12:00:09 -08:00
|
|
|
this.error(`Unexpected token ${n}, expected identifier, keyword, or string`)
|
2014-11-05 13:48:36 -08:00
|
|
|
}
|
|
|
|
this.advance();
|
|
|
|
return n.toString();
|
|
|
|
}
|
|
|
|
|
2014-11-03 17:25:16 -08:00
|
|
|
parseChain():AST {
|
|
|
|
var exprs = [];
|
|
|
|
while (this.index < this.tokens.length) {
|
2014-11-04 10:19:37 -08:00
|
|
|
var expr = this.parseFormatter();
|
|
|
|
ListWrapper.push(exprs, expr);
|
|
|
|
|
2014-11-06 12:00:09 -08:00
|
|
|
if (this.optionalCharacter($SEMICOLON)) {
|
2014-11-04 15:51:56 -08:00
|
|
|
if (! this.parseAction) {
|
|
|
|
this.error("Binding expression cannot contain chained expression");
|
|
|
|
}
|
2014-11-06 12:00:09 -08:00
|
|
|
while (this.optionalCharacter($SEMICOLON)){} //read all semicolons
|
|
|
|
} else if (this.index < this.tokens.length) {
|
|
|
|
this.error(`Unexpected token '${this.next}'`);
|
2014-11-04 10:19:37 -08:00
|
|
|
}
|
2014-11-03 17:25:16 -08:00
|
|
|
}
|
2014-11-05 10:00:19 -08:00
|
|
|
return exprs.length == 1 ? exprs[0] : new Chain(exprs);
|
2014-11-03 17:25:16 -08:00
|
|
|
}
|
|
|
|
|
2014-11-04 10:19:37 -08:00
|
|
|
parseFormatter() {
|
|
|
|
var result = this.parseExpression();
|
|
|
|
while (this.optionalOperator("|")) {
|
2014-11-04 15:51:56 -08:00
|
|
|
if (this.parseAction) {
|
|
|
|
this.error("Cannot have a formatter in an action expression");
|
|
|
|
}
|
2014-11-05 10:00:19 -08:00
|
|
|
var name = this.expectIdentifierOrKeyword();
|
2014-11-04 10:19:37 -08:00
|
|
|
var args = ListWrapper.create();
|
|
|
|
while (this.optionalCharacter($COLON)) {
|
|
|
|
ListWrapper.push(args, this.parseExpression());
|
|
|
|
}
|
|
|
|
result = new Formatter(result, name, args);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2014-11-03 17:25:16 -08:00
|
|
|
parseExpression() {
|
2014-11-05 13:53:45 -08:00
|
|
|
var start = this.inputIndex;
|
2014-11-05 10:00:19 -08:00
|
|
|
var result = this.parseConditional();
|
|
|
|
|
|
|
|
while (this.next.isOperator('=')) {
|
2014-11-05 13:53:45 -08:00
|
|
|
if (!result.isAssignable) {
|
|
|
|
var end = this.inputIndex;
|
|
|
|
var expression = this.input.substring(start, end);
|
|
|
|
this.error(`Expression ${expression} is not assignable`);
|
|
|
|
}
|
|
|
|
|
2014-11-06 12:00:09 -08:00
|
|
|
if (!this.parseAction) {
|
|
|
|
this.error("Binding expression cannot contain assignments");
|
|
|
|
}
|
|
|
|
|
2014-11-05 10:00:19 -08:00
|
|
|
this.expectOperator('=');
|
|
|
|
result = new Assignment(result, this.parseConditional());
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
2014-11-03 17:25:16 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
parseConditional() {
|
|
|
|
var start = this.inputIndex;
|
|
|
|
var result = this.parseLogicalOr();
|
|
|
|
|
|
|
|
if (this.optionalOperator('?')) {
|
|
|
|
var yes = this.parseExpression();
|
|
|
|
if (!this.optionalCharacter($COLON)) {
|
|
|
|
var end = this.inputIndex;
|
|
|
|
var expression = this.input.substring(start, end);
|
|
|
|
this.error(`Conditional expression ${expression} requires all 3 expressions`);
|
|
|
|
}
|
|
|
|
var no = this.parseExpression();
|
|
|
|
return new Conditional(result, yes, no);
|
|
|
|
} else {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-30 23:47:22 -07:00
|
|
|
parseLogicalOr() {
|
|
|
|
// '||'
|
|
|
|
var result = this.parseLogicalAnd();
|
|
|
|
while (this.optionalOperator('||')) {
|
|
|
|
result = new Binary('||', result, this.parseLogicalAnd());
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
parseLogicalAnd() {
|
|
|
|
// '&&'
|
|
|
|
var result = this.parseEquality();
|
|
|
|
while (this.optionalOperator('&&')) {
|
|
|
|
result = new Binary('&&', result, this.parseEquality());
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
parseEquality() {
|
|
|
|
// '==','!='
|
|
|
|
var result = this.parseRelational();
|
|
|
|
while (true) {
|
|
|
|
if (this.optionalOperator('==')) {
|
|
|
|
result = new Binary('==', result, this.parseRelational());
|
|
|
|
} else if (this.optionalOperator('!=')) {
|
|
|
|
result = new Binary('!=', result, this.parseRelational());
|
|
|
|
} else {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
parseRelational() {
|
|
|
|
// '<', '>', '<=', '>='
|
|
|
|
var result = this.parseAdditive();
|
|
|
|
while (true) {
|
|
|
|
if (this.optionalOperator('<')) {
|
|
|
|
result = new Binary('<', result, this.parseAdditive());
|
|
|
|
} else if (this.optionalOperator('>')) {
|
|
|
|
result = new Binary('>', result, this.parseAdditive());
|
|
|
|
} else if (this.optionalOperator('<=')) {
|
|
|
|
result = new Binary('<=', result, this.parseAdditive());
|
|
|
|
} else if (this.optionalOperator('>=')) {
|
|
|
|
result = new Binary('>=', result, this.parseAdditive());
|
|
|
|
} else {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
parseAdditive() {
|
|
|
|
// '+', '-'
|
|
|
|
var result = this.parseMultiplicative();
|
|
|
|
while (true) {
|
|
|
|
if (this.optionalOperator('+')) {
|
|
|
|
result = new Binary('+', result, this.parseMultiplicative());
|
|
|
|
} else if (this.optionalOperator('-')) {
|
|
|
|
result = new Binary('-', result, this.parseMultiplicative());
|
|
|
|
} else {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
parseMultiplicative() {
|
2014-11-05 10:00:19 -08:00
|
|
|
// '*', '%', '/'
|
2014-10-30 23:47:22 -07:00
|
|
|
var result = this.parsePrefix();
|
|
|
|
while (true) {
|
|
|
|
if (this.optionalOperator('*')) {
|
|
|
|
result = new Binary('*', result, this.parsePrefix());
|
|
|
|
} else if (this.optionalOperator('%')) {
|
|
|
|
result = new Binary('%', result, this.parsePrefix());
|
|
|
|
} else if (this.optionalOperator('/')) {
|
|
|
|
result = new Binary('/', result, this.parsePrefix());
|
|
|
|
} else {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
parsePrefix() {
|
|
|
|
if (this.optionalOperator('+')) {
|
|
|
|
return this.parsePrefix();
|
|
|
|
} else if (this.optionalOperator('-')) {
|
|
|
|
return new Binary('-', new LiteralPrimitive(0), this.parsePrefix());
|
|
|
|
} else if (this.optionalOperator('!')) {
|
|
|
|
return new PrefixNot(this.parsePrefix());
|
|
|
|
} else {
|
2014-11-05 15:38:44 -08:00
|
|
|
return this.parseCallChain();
|
2014-10-30 23:47:22 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-05 15:38:44 -08:00
|
|
|
parseCallChain():AST {
|
2014-10-30 23:47:22 -07:00
|
|
|
var result = this.parsePrimary();
|
2014-11-05 10:00:19 -08:00
|
|
|
while (true) {
|
|
|
|
if (this.optionalCharacter($PERIOD)) {
|
2014-11-05 17:10:37 -08:00
|
|
|
result = this.parseAccessMemberOrMethodCall(result);
|
2014-11-05 13:48:36 -08:00
|
|
|
|
|
|
|
} else if (this.optionalCharacter($LBRACKET)) {
|
|
|
|
var key = this.parseExpression();
|
|
|
|
this.expectCharacter($RBRACKET);
|
|
|
|
result = new KeyedAccess(result, key);
|
|
|
|
|
2014-11-05 15:38:44 -08:00
|
|
|
} else if (this.optionalCharacter($LPAREN)) {
|
|
|
|
var args = this.parseCallArguments();
|
|
|
|
this.expectCharacter($RPAREN);
|
|
|
|
result = new FunctionCall(result, this.closureMap, args);
|
|
|
|
|
2014-11-05 10:00:19 -08:00
|
|
|
} else {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
2014-10-30 23:47:22 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
parsePrimary() {
|
2014-11-06 12:00:09 -08:00
|
|
|
if (this.optionalCharacter($LPAREN)) {
|
|
|
|
var result = this.parseFormatter();
|
|
|
|
this.expectCharacter($RPAREN);
|
|
|
|
return result;
|
|
|
|
|
|
|
|
} else if (this.next.isKeywordNull() || this.next.isKeywordUndefined()) {
|
2014-10-30 23:47:22 -07:00
|
|
|
this.advance();
|
|
|
|
return new LiteralPrimitive(null);
|
2014-11-05 10:00:19 -08:00
|
|
|
|
2014-10-30 23:47:22 -07:00
|
|
|
} else if (this.next.isKeywordTrue()) {
|
|
|
|
this.advance();
|
|
|
|
return new LiteralPrimitive(true);
|
2014-11-05 10:00:19 -08:00
|
|
|
|
2014-10-30 23:47:22 -07:00
|
|
|
} else if (this.next.isKeywordFalse()) {
|
|
|
|
this.advance();
|
|
|
|
return new LiteralPrimitive(false);
|
2014-11-05 10:00:19 -08:00
|
|
|
|
2014-11-05 13:48:36 -08:00
|
|
|
} else if (this.optionalCharacter($LBRACKET)) {
|
|
|
|
var elements = this.parseExpressionList($RBRACKET);
|
|
|
|
this.expectCharacter($RBRACKET);
|
|
|
|
return new LiteralArray(elements);
|
|
|
|
|
|
|
|
} else if (this.next.isCharacter($LBRACE)) {
|
|
|
|
return this.parseLiteralMap();
|
|
|
|
|
2014-10-30 23:47:22 -07:00
|
|
|
} else if (this.next.isIdentifier()) {
|
2014-11-05 17:10:37 -08:00
|
|
|
return this.parseAccessMemberOrMethodCall(_implicitReceiver);
|
2014-11-05 10:00:19 -08:00
|
|
|
|
2014-10-30 23:47:22 -07:00
|
|
|
} else if (this.next.isNumber()) {
|
2014-11-03 17:25:16 -08:00
|
|
|
var value = this.next.toNumber();
|
2014-10-30 23:47:22 -07:00
|
|
|
this.advance();
|
|
|
|
return new LiteralPrimitive(value);
|
2014-11-05 10:00:19 -08:00
|
|
|
|
2014-10-30 23:47:22 -07:00
|
|
|
} else if (this.next.isString()) {
|
2014-11-03 17:25:16 -08:00
|
|
|
var value = this.next.toString();
|
2014-10-30 23:47:22 -07:00
|
|
|
this.advance();
|
|
|
|
return new LiteralPrimitive(value);
|
2014-11-05 10:00:19 -08:00
|
|
|
|
2014-10-30 23:47:22 -07:00
|
|
|
} else if (this.index >= this.tokens.length) {
|
2014-11-05 10:00:19 -08:00
|
|
|
this.error(`Unexpected end of expression: ${this.input}`);
|
2014-10-30 23:47:22 -07:00
|
|
|
|
2014-11-05 10:00:19 -08:00
|
|
|
} else {
|
|
|
|
this.error(`Unexpected token ${this.next}`);
|
2014-11-03 17:25:16 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-05 13:48:36 -08:00
|
|
|
parseExpressionList(terminator:int):List {
|
|
|
|
var result = [];
|
|
|
|
if (!this.next.isCharacter(terminator)) {
|
|
|
|
do {
|
|
|
|
ListWrapper.push(result, this.parseExpression());
|
|
|
|
} while (this.optionalCharacter($COMMA));
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
parseLiteralMap() {
|
|
|
|
var keys = [];
|
|
|
|
var values = [];
|
|
|
|
this.expectCharacter($LBRACE);
|
|
|
|
if (!this.optionalCharacter($RBRACE)) {
|
|
|
|
do {
|
|
|
|
var key = this.expectIdentifierOrKeywordOrString();
|
|
|
|
ListWrapper.push(keys, key);
|
|
|
|
this.expectCharacter($COLON);
|
|
|
|
ListWrapper.push(values, this.parseExpression());
|
|
|
|
} while (this.optionalCharacter($COMMA));
|
|
|
|
this.expectCharacter($RBRACE);
|
|
|
|
}
|
|
|
|
return new LiteralMap(keys, values);
|
|
|
|
}
|
|
|
|
|
2014-11-05 17:10:37 -08:00
|
|
|
parseAccessMemberOrMethodCall(receiver):AST {
|
2014-11-05 10:00:19 -08:00
|
|
|
var id = this.expectIdentifierOrKeyword();
|
2014-11-05 15:38:44 -08:00
|
|
|
|
|
|
|
if (this.optionalCharacter($LPAREN)) {
|
|
|
|
var args = this.parseCallArguments();
|
|
|
|
this.expectCharacter($RPAREN);
|
|
|
|
var fn = this.closureMap.fn(id);
|
|
|
|
return new MethodCall(receiver, fn, args);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
var getter = this.closureMap.getter(id);
|
|
|
|
var setter = this.closureMap.setter(id);
|
2014-11-05 17:10:37 -08:00
|
|
|
return new AccessMember(receiver, id, getter, setter);
|
2014-11-05 15:38:44 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
parseCallArguments() {
|
|
|
|
if (this.next.isCharacter($RPAREN)) return [];
|
|
|
|
var positionals = [];
|
|
|
|
do {
|
|
|
|
ListWrapper.push(positionals, this.parseExpression());
|
|
|
|
} while (this.optionalCharacter($COMMA))
|
|
|
|
return positionals;
|
2014-10-28 12:22:38 -04:00
|
|
|
}
|
2014-11-03 17:25:16 -08:00
|
|
|
|
2014-11-18 16:38:36 -08:00
|
|
|
parseTemplateBindings() {
|
|
|
|
var bindings = [];
|
|
|
|
while (this.index < this.tokens.length) {
|
|
|
|
var key = this.expectIdentifierOrKeywordOrString();
|
|
|
|
this.optionalCharacter($COLON);
|
|
|
|
var name = null;
|
|
|
|
var expression = null;
|
|
|
|
if (this.optionalOperator("#")) {
|
|
|
|
name = this.expectIdentifierOrKeyword();
|
|
|
|
} else {
|
|
|
|
var start = this.inputIndex;
|
|
|
|
var ast = this.parseExpression();
|
|
|
|
var source = this.input.substring(start, this.inputIndex);
|
|
|
|
expression = new ASTWithSource(ast, source);
|
|
|
|
}
|
|
|
|
ListWrapper.push(bindings, new TemplateBinding(key, name, expression));
|
|
|
|
if (!this.optionalCharacter($SEMICOLON)) {
|
|
|
|
this.optionalCharacter($COMMA);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return bindings;
|
|
|
|
}
|
|
|
|
|
2014-11-03 17:25:16 -08:00
|
|
|
error(message:string, index:int = null) {
|
|
|
|
if (isBlank(index)) index = this.index;
|
|
|
|
|
|
|
|
var location = (index < this.tokens.length)
|
2014-11-04 09:21:28 -08:00
|
|
|
? `at column ${this.tokens[index].index + 1} in`
|
2014-11-03 17:25:16 -08:00
|
|
|
: `at the end of the expression`;
|
|
|
|
|
2014-11-05 10:00:19 -08:00
|
|
|
throw new BaseException(`Parser Error: ${message} ${location} [${this.input}]`);
|
2014-11-03 17:25:16 -08:00
|
|
|
}
|
2014-11-04 15:51:56 -08:00
|
|
|
}
|