2015-03-16 14:44:14 -07:00
|
|
|
import {Injectable} from 'angular2/di';
|
2015-03-11 16:45:36 +01:00
|
|
|
import {int, isBlank, isPresent, BaseException, StringWrapper, RegExpWrapper} from 'angular2/src/facade/lang';
|
2015-02-05 13:08:05 -08:00
|
|
|
import {ListWrapper, List} from 'angular2/src/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';
|
2015-02-05 13:08:05 -08:00
|
|
|
import {reflector, Reflector} from 'angular2/src/reflection/reflection';
|
2014-11-04 10:19:37 -08:00
|
|
|
import {
|
|
|
|
AST,
|
2014-11-25 18:38:28 -08:00
|
|
|
EmptyExpr,
|
2014-11-04 10:19:37 -08:00
|
|
|
ImplicitReceiver,
|
2014-11-05 17:10:37 -08:00
|
|
|
AccessMember,
|
2014-11-04 10:19:37 -08:00
|
|
|
LiteralPrimitive,
|
|
|
|
Expression,
|
|
|
|
Binary,
|
|
|
|
PrefixNot,
|
|
|
|
Conditional,
|
2015-02-19 17:47:25 -08:00
|
|
|
Pipe,
|
2014-11-05 10:00:19 -08:00
|
|
|
Assignment,
|
|
|
|
Chain,
|
2014-11-05 13:48:36 -08:00
|
|
|
KeyedAccess,
|
|
|
|
LiteralArray,
|
2014-11-05 15:38:44 -08:00
|
|
|
LiteralMap,
|
2015-01-08 16:17:56 -08:00
|
|
|
Interpolation,
|
2014-11-05 15:38:44 -08:00
|
|
|
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();
|
2015-01-08 16:17:56 -08:00
|
|
|
// TODO(tbosch): Cannot make this const/final right now because of the transpiler...
|
|
|
|
var INTERPOLATION_REGEXP = RegExpWrapper.create('\\{\\{(.*?)\\}\\}');
|
|
|
|
var QUOTE_REGEXP = RegExpWrapper.create("'");
|
2014-10-28 12:22:38 -04:00
|
|
|
|
2015-03-16 14:44:14 -07:00
|
|
|
@Injectable()
|
2014-09-26 13:52:12 -07:00
|
|
|
export class Parser {
|
2014-11-21 21:19:23 -08:00
|
|
|
_lexer:Lexer;
|
2014-11-20 12:07:48 -08:00
|
|
|
_reflector:Reflector;
|
|
|
|
constructor(lexer:Lexer, providedReflector:Reflector = null){
|
2014-10-28 12:22:38 -04:00
|
|
|
this._lexer = lexer;
|
2014-11-20 12:07:48 -08:00
|
|
|
this._reflector = isPresent(providedReflector) ? providedReflector : reflector;
|
2014-10-28 12:22:38 -04:00
|
|
|
}
|
|
|
|
|
2014-12-10 19:21:15 -08:00
|
|
|
parseAction(input:string, location:any):ASTWithSource {
|
2014-10-28 12:22:38 -04:00
|
|
|
var tokens = this._lexer.tokenize(input);
|
2014-12-10 19:21:15 -08:00
|
|
|
var ast = new _ParseAST(input, location, tokens, this._reflector, true).parseChain();
|
|
|
|
return new ASTWithSource(ast, input, location);
|
2014-11-04 15:51:56 -08:00
|
|
|
}
|
|
|
|
|
2014-12-10 19:21:15 -08:00
|
|
|
parseBinding(input:string, location:any):ASTWithSource {
|
2014-11-04 15:51:56 -08:00
|
|
|
var tokens = this._lexer.tokenize(input);
|
2014-12-10 19:21:15 -08:00
|
|
|
var ast = new _ParseAST(input, location, tokens, this._reflector, false).parseChain();
|
|
|
|
return new ASTWithSource(ast, input, location);
|
2014-11-18 16:38:36 -08:00
|
|
|
}
|
|
|
|
|
2015-02-19 17:47:25 -08:00
|
|
|
addPipes(bindingAst:ASTWithSource, pipes:List<String>):ASTWithSource {
|
|
|
|
if (ListWrapper.isEmpty(pipes)) return bindingAst;
|
|
|
|
|
|
|
|
var res = ListWrapper.reduce(pipes,
|
2015-02-27 13:38:25 -08:00
|
|
|
(result, currentPipeName) => new Pipe(result, currentPipeName, [], false),
|
2015-02-19 17:47:25 -08:00
|
|
|
bindingAst.ast);
|
|
|
|
return new ASTWithSource(res, bindingAst.source, bindingAst.location);
|
|
|
|
}
|
|
|
|
|
2014-12-10 19:21:15 -08:00
|
|
|
parseTemplateBindings(input:string, location:any):List<TemplateBinding> {
|
2014-11-18 16:38:36 -08:00
|
|
|
var tokens = this._lexer.tokenize(input);
|
2014-12-10 19:21:15 -08:00
|
|
|
return new _ParseAST(input, location, tokens, this._reflector, false).parseTemplateBindings();
|
2014-10-28 12:22:38 -04:00
|
|
|
}
|
2015-01-08 16:17:56 -08:00
|
|
|
|
|
|
|
parseInterpolation(input:string, location:any):ASTWithSource {
|
|
|
|
var parts = StringWrapper.split(input, INTERPOLATION_REGEXP);
|
|
|
|
if (parts.length <= 1) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
var strings = [];
|
|
|
|
var expressions = [];
|
|
|
|
|
|
|
|
for (var i=0; i<parts.length; i++) {
|
|
|
|
var part = parts[i];
|
|
|
|
if (i%2 === 0) {
|
|
|
|
// fixed string
|
|
|
|
ListWrapper.push(strings, part);
|
|
|
|
} else {
|
|
|
|
var tokens = this._lexer.tokenize(part);
|
|
|
|
var ast = new _ParseAST(input, location, tokens, this._reflector, false).parseChain();
|
|
|
|
ListWrapper.push(expressions, ast);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return new ASTWithSource(new Interpolation(strings, expressions), input, location);
|
2015-02-05 20:13:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
wrapLiteralPrimitive(input:string, location:any):ASTWithSource {
|
|
|
|
return new ASTWithSource(new LiteralPrimitive(input), input, location);
|
2015-01-08 16:17:56 -08: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;
|
2014-12-10 19:21:15 -08:00
|
|
|
location:any;
|
2014-11-21 21:19:23 -08:00
|
|
|
tokens:List<Token>;
|
2014-11-20 12:07:48 -08:00
|
|
|
reflector:Reflector;
|
2014-11-21 21:19:23 -08:00
|
|
|
parseAction:boolean;
|
|
|
|
index:int;
|
2014-12-10 19:21:15 -08:00
|
|
|
constructor(input:string, location:any, tokens:List, reflector:Reflector, parseAction:boolean) {
|
2014-11-03 17:25:16 -08:00
|
|
|
this.input = input;
|
2014-12-10 19:21:15 -08:00
|
|
|
this.location = location;
|
2014-10-28 12:22:38 -04:00
|
|
|
this.tokens = tokens;
|
|
|
|
this.index = 0;
|
2014-11-20 12:07:48 -08:00
|
|
|
this.reflector = reflector;
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-27 22:34:25 -08:00
|
|
|
optionalKeywordVar():boolean {
|
|
|
|
if (this.peekKeywordVar()) {
|
|
|
|
this.advance();
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
peekKeywordVar():boolean {
|
|
|
|
return this.next.isKeywordVar() || this.next.isOperator('#');
|
|
|
|
}
|
|
|
|
|
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) {
|
2015-02-20 10:59:14 -08:00
|
|
|
var expr = this.parsePipe();
|
2014-11-04 10:19:37 -08:00
|
|
|
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-25 18:38:28 -08:00
|
|
|
if (exprs.length == 0) return new EmptyExpr();
|
|
|
|
if (exprs.length == 1) return exprs[0];
|
|
|
|
return new Chain(exprs);
|
2014-11-03 17:25:16 -08:00
|
|
|
}
|
|
|
|
|
2015-02-20 10:59:14 -08:00
|
|
|
parsePipe() {
|
2014-11-04 10:19:37 -08:00
|
|
|
var result = this.parseExpression();
|
2015-04-15 13:34:59 -07:00
|
|
|
if (this.optionalOperator("|")) {
|
|
|
|
return this.parseInlinedPipe(result);
|
|
|
|
} else {
|
|
|
|
return result;
|
2014-11-04 10:19:37 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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() {
|
2015-04-22 11:45:33 +02:00
|
|
|
// '==','!=','===','!=='
|
2014-10-30 23:47:22 -07:00
|
|
|
var result = this.parseRelational();
|
|
|
|
while (true) {
|
|
|
|
if (this.optionalOperator('==')) {
|
|
|
|
result = new Binary('==', result, this.parseRelational());
|
2015-04-22 11:45:33 +02:00
|
|
|
} else if (this.optionalOperator('===')) {
|
|
|
|
result = new Binary('===', result, this.parseRelational());
|
2014-10-30 23:47:22 -07:00
|
|
|
} else if (this.optionalOperator('!=')) {
|
|
|
|
result = new Binary('!=', result, this.parseRelational());
|
2015-04-22 11:45:33 +02:00
|
|
|
} else if (this.optionalOperator('!==')) {
|
|
|
|
result = new Binary('!==', result, this.parseRelational());
|
2014-10-30 23:47:22 -07:00
|
|
|
} 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);
|
2014-11-20 12:07:48 -08:00
|
|
|
result = new FunctionCall(result, args);
|
2014-11-05 15:38:44 -08:00
|
|
|
|
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)) {
|
2015-02-20 10:59:14 -08:00
|
|
|
var result = this.parsePipe();
|
2014-11-06 12:00:09 -08:00
|
|
|
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);
|
2014-11-20 12:07:48 -08:00
|
|
|
var fn = this.reflector.method(id);
|
2014-12-16 16:45:08 -08:00
|
|
|
return new MethodCall(receiver, id, fn, args);
|
2014-11-05 15:38:44 -08:00
|
|
|
|
|
|
|
} else {
|
2014-11-20 12:07:48 -08:00
|
|
|
var getter = this.reflector.getter(id);
|
|
|
|
var setter = this.reflector.setter(id);
|
2015-04-15 13:34:59 -07:00
|
|
|
var am = new AccessMember(receiver, id, getter, setter);
|
|
|
|
|
|
|
|
if (this.optionalOperator("|")) {
|
|
|
|
return this.parseInlinedPipe(am);
|
|
|
|
} else {
|
|
|
|
return am;
|
|
|
|
}
|
2014-11-05 15:38:44 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-15 13:34:59 -07:00
|
|
|
parseInlinedPipe(result) {
|
|
|
|
do {
|
|
|
|
if (this.parseAction) {
|
|
|
|
this.error("Cannot have a pipe in an action expression");
|
|
|
|
}
|
|
|
|
var name = this.expectIdentifierOrKeyword();
|
|
|
|
var args = ListWrapper.create();
|
|
|
|
while (this.optionalCharacter($COLON)) {
|
|
|
|
ListWrapper.push(args, this.parseExpression());
|
|
|
|
}
|
|
|
|
result = new Pipe(result, name, args, true);
|
|
|
|
} while(this.optionalOperator("|"));
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
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-12-01 16:05:44 -08:00
|
|
|
/**
|
|
|
|
* An identifier, a keyword, a string with an optional `-` inbetween.
|
|
|
|
*/
|
|
|
|
expectTemplateBindingKey() {
|
|
|
|
var result = '';
|
|
|
|
var operatorFound = false;
|
|
|
|
do {
|
|
|
|
result += this.expectIdentifierOrKeywordOrString();
|
|
|
|
operatorFound = this.optionalOperator('-');
|
|
|
|
if (operatorFound) {
|
|
|
|
result += '-';
|
|
|
|
}
|
|
|
|
} while (operatorFound);
|
|
|
|
|
|
|
|
return result.toString();
|
|
|
|
}
|
|
|
|
|
2014-11-18 16:38:36 -08:00
|
|
|
parseTemplateBindings() {
|
|
|
|
var bindings = [];
|
|
|
|
while (this.index < this.tokens.length) {
|
2015-01-27 22:34:25 -08:00
|
|
|
var keyIsVar:boolean = this.optionalKeywordVar();
|
2014-12-01 16:05:44 -08:00
|
|
|
var key = this.expectTemplateBindingKey();
|
2014-11-18 16:38:36 -08:00
|
|
|
this.optionalCharacter($COLON);
|
|
|
|
var name = null;
|
|
|
|
var expression = null;
|
2014-12-01 16:05:44 -08:00
|
|
|
if (this.next !== EOF) {
|
2015-01-27 22:34:25 -08:00
|
|
|
if (keyIsVar) {
|
|
|
|
if (this.optionalOperator("=")) {
|
|
|
|
name = this.expectTemplateBindingKey();
|
|
|
|
} else {
|
|
|
|
name = '\$implicit';
|
|
|
|
}
|
|
|
|
} else if (!this.peekKeywordVar()) {
|
2014-12-01 16:05:44 -08:00
|
|
|
var start = this.inputIndex;
|
2015-02-23 13:12:49 -08:00
|
|
|
var ast = this.parsePipe();
|
2014-12-01 16:05:44 -08:00
|
|
|
var source = this.input.substring(start, this.inputIndex);
|
2014-12-10 19:21:15 -08:00
|
|
|
expression = new ASTWithSource(ast, source, this.location);
|
2014-12-01 16:05:44 -08:00
|
|
|
}
|
2014-11-18 16:38:36 -08:00
|
|
|
}
|
2015-01-27 22:34:25 -08:00
|
|
|
ListWrapper.push(bindings, new TemplateBinding(key, keyIsVar, name, expression));
|
2014-11-18 16:38:36 -08:00
|
|
|
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-12-10 19:21:15 -08:00
|
|
|
throw new BaseException(`Parser Error: ${message} ${location} [${this.input}] in ${this.location}`);
|
2014-11-03 17:25:16 -08:00
|
|
|
}
|
2014-11-04 15:51:56 -08:00
|
|
|
}
|