2016-06-01 17:31:35 -07:00
|
|
|
import {Injectable} from '@angular/core';
|
2016-05-31 15:22:59 -07:00
|
|
|
import {isBlank, isPresent, StringWrapper} from '../facade/lang';
|
|
|
|
import {BaseException} from '../facade/exceptions';
|
|
|
|
import {ListWrapper} from '../facade/collection';
|
2016-04-12 09:40:37 -07:00
|
|
|
import {
|
|
|
|
Lexer,
|
|
|
|
EOF,
|
|
|
|
isIdentifier,
|
2016-04-14 16:16:22 -07:00
|
|
|
isQuote,
|
2016-04-12 09:40:37 -07:00
|
|
|
Token,
|
|
|
|
$PERIOD,
|
|
|
|
$COLON,
|
|
|
|
$SEMICOLON,
|
|
|
|
$LBRACKET,
|
|
|
|
$RBRACKET,
|
|
|
|
$COMMA,
|
|
|
|
$LBRACE,
|
|
|
|
$RBRACE,
|
|
|
|
$LPAREN,
|
2016-04-14 16:16:22 -07:00
|
|
|
$RPAREN,
|
|
|
|
$SLASH
|
2016-04-12 09:40:37 -07:00
|
|
|
} from './lexer';
|
|
|
|
import {
|
|
|
|
AST,
|
|
|
|
EmptyExpr,
|
|
|
|
ImplicitReceiver,
|
|
|
|
PropertyRead,
|
|
|
|
PropertyWrite,
|
|
|
|
SafePropertyRead,
|
|
|
|
LiteralPrimitive,
|
|
|
|
Binary,
|
|
|
|
PrefixNot,
|
|
|
|
Conditional,
|
|
|
|
BindingPipe,
|
|
|
|
Chain,
|
|
|
|
KeyedRead,
|
|
|
|
KeyedWrite,
|
|
|
|
LiteralArray,
|
|
|
|
LiteralMap,
|
|
|
|
Interpolation,
|
|
|
|
MethodCall,
|
|
|
|
SafeMethodCall,
|
|
|
|
FunctionCall,
|
|
|
|
TemplateBinding,
|
|
|
|
ASTWithSource,
|
|
|
|
AstVisitor,
|
|
|
|
Quote
|
|
|
|
} from './ast';
|
2015-05-01 14:05:19 -07:00
|
|
|
|
|
|
|
|
2014-10-28 12:22:38 -04:00
|
|
|
var _implicitReceiver = new ImplicitReceiver();
|
2016-06-01 17:31:35 -07:00
|
|
|
// TODO(tbosch): Cannot make this const/final right now because of the transpiler...
|
|
|
|
var INTERPOLATION_REGEXP = /\{\{([\s\S]*?)\}\}/g;
|
2014-10-28 12:22:38 -04:00
|
|
|
|
2015-08-03 12:05:45 +02:00
|
|
|
class ParseException extends BaseException {
|
|
|
|
constructor(message: string, input: string, errLocation: string, ctxLocation?: any) {
|
2015-09-10 15:25:36 -07:00
|
|
|
super(`Parser Error: ${message} ${errLocation} [${input}] in ${ctxLocation}`);
|
2015-08-03 12:05:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-23 13:45:04 -07:00
|
|
|
export class SplitInterpolation {
|
|
|
|
constructor(public strings: string[], public expressions: string[]) {}
|
|
|
|
}
|
|
|
|
|
2016-04-25 19:52:24 -07:00
|
|
|
export class TemplateBindingParseResult {
|
|
|
|
constructor(public templateBindings: TemplateBinding[], public warnings: string[]) {}
|
|
|
|
}
|
|
|
|
|
2015-03-16 14:44:14 -07:00
|
|
|
@Injectable()
|
2014-09-26 13:52:12 -07:00
|
|
|
export class Parser {
|
2015-10-09 17:21:25 -07:00
|
|
|
constructor(/** @internal */
|
2016-06-01 17:31:35 -07:00
|
|
|
public _lexer: Lexer) {}
|
2014-10-28 12:22:38 -04:00
|
|
|
|
2015-05-01 14:05:19 -07:00
|
|
|
parseAction(input: string, location: any): ASTWithSource {
|
2015-08-20 16:34:47 +02:00
|
|
|
this._checkNoInterpolation(input, location);
|
2016-04-14 16:16:22 -07:00
|
|
|
var tokens = this._lexer.tokenize(this._stripComments(input));
|
2016-01-06 14:13:44 -08:00
|
|
|
var ast = new _ParseAST(input, location, tokens, true).parseChain();
|
2014-12-10 19:21:15 -08:00
|
|
|
return new ASTWithSource(ast, input, location);
|
2014-11-04 15:51:56 -08:00
|
|
|
}
|
|
|
|
|
2015-05-01 14:05:19 -07:00
|
|
|
parseBinding(input: string, location: any): ASTWithSource {
|
2015-11-23 17:58:12 -08:00
|
|
|
var ast = this._parseBindingAst(input, location);
|
2014-12-10 19:21:15 -08:00
|
|
|
return new ASTWithSource(ast, input, location);
|
2014-11-18 16:38:36 -08:00
|
|
|
}
|
|
|
|
|
2015-06-22 08:21:03 -07:00
|
|
|
parseSimpleBinding(input: string, location: string): ASTWithSource {
|
2015-11-23 17:58:12 -08:00
|
|
|
var ast = this._parseBindingAst(input, location);
|
|
|
|
if (!SimpleExpressionChecker.check(ast)) {
|
|
|
|
throw new ParseException(
|
|
|
|
'Host binding expression can only contain field access and constants', input, location);
|
|
|
|
}
|
|
|
|
return new ASTWithSource(ast, input, location);
|
|
|
|
}
|
|
|
|
|
|
|
|
private _parseBindingAst(input: string, location: string): AST {
|
|
|
|
// Quotes expressions use 3rd-party expression language. We don't want to use
|
|
|
|
// our lexer or parser for that, so we check for that ahead of time.
|
|
|
|
var quote = this._parseQuote(input, location);
|
|
|
|
|
|
|
|
if (isPresent(quote)) {
|
|
|
|
return quote;
|
|
|
|
}
|
|
|
|
|
2015-08-20 16:34:47 +02:00
|
|
|
this._checkNoInterpolation(input, location);
|
2016-04-14 16:16:22 -07:00
|
|
|
var tokens = this._lexer.tokenize(this._stripComments(input));
|
2016-01-06 14:13:44 -08:00
|
|
|
return new _ParseAST(input, location, tokens, false).parseChain();
|
2015-11-23 17:58:12 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
private _parseQuote(input: string, location: any): AST {
|
|
|
|
if (isBlank(input)) return null;
|
|
|
|
var prefixSeparatorIndex = input.indexOf(':');
|
|
|
|
if (prefixSeparatorIndex == -1) return null;
|
2015-11-25 15:28:42 -08:00
|
|
|
var prefix = input.substring(0, prefixSeparatorIndex).trim();
|
|
|
|
if (!isIdentifier(prefix)) return null;
|
2015-11-23 17:58:12 -08:00
|
|
|
var uninterpretedExpression = input.substring(prefixSeparatorIndex + 1);
|
2015-11-25 15:28:42 -08:00
|
|
|
return new Quote(prefix, uninterpretedExpression, location);
|
2015-06-22 08:21:03 -07:00
|
|
|
}
|
|
|
|
|
2016-04-25 19:52:24 -07:00
|
|
|
parseTemplateBindings(input: string, location: any): TemplateBindingParseResult {
|
2014-11-18 16:38:36 -08:00
|
|
|
var tokens = this._lexer.tokenize(input);
|
2016-01-06 14:13:44 -08:00
|
|
|
return new _ParseAST(input, location, tokens, false).parseTemplateBindings();
|
2014-10-28 12:22:38 -04:00
|
|
|
}
|
2015-01-08 16:17:56 -08:00
|
|
|
|
2015-05-01 14:05:19 -07:00
|
|
|
parseInterpolation(input: string, location: any): ASTWithSource {
|
2016-03-23 13:45:04 -07:00
|
|
|
let split = this.splitInterpolation(input, location);
|
|
|
|
if (split == null) return null;
|
|
|
|
|
|
|
|
let expressions = [];
|
|
|
|
|
|
|
|
for (let i = 0; i < split.expressions.length; ++i) {
|
2016-04-14 16:16:22 -07:00
|
|
|
var tokens = this._lexer.tokenize(this._stripComments(split.expressions[i]));
|
2016-01-06 14:13:44 -08:00
|
|
|
var ast = new _ParseAST(input, location, tokens, false).parseChain();
|
2016-03-23 13:45:04 -07:00
|
|
|
expressions.push(ast);
|
|
|
|
}
|
|
|
|
|
|
|
|
return new ASTWithSource(new Interpolation(split.strings, expressions), input, location);
|
|
|
|
}
|
|
|
|
|
|
|
|
splitInterpolation(input: string, location: string): SplitInterpolation {
|
2016-06-01 17:31:35 -07:00
|
|
|
var parts = StringWrapper.split(input, INTERPOLATION_REGEXP);
|
2015-01-08 16:17:56 -08:00
|
|
|
if (parts.length <= 1) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
var strings = [];
|
|
|
|
var expressions = [];
|
|
|
|
|
2015-05-01 14:05:19 -07:00
|
|
|
for (var i = 0; i < parts.length; i++) {
|
2015-08-03 12:05:45 +02:00
|
|
|
var part: string = parts[i];
|
2015-05-01 14:05:19 -07:00
|
|
|
if (i % 2 === 0) {
|
2015-01-08 16:17:56 -08:00
|
|
|
// fixed string
|
2015-06-17 11:17:21 -07:00
|
|
|
strings.push(part);
|
2015-08-03 12:05:45 +02:00
|
|
|
} else if (part.trim().length > 0) {
|
2016-03-23 13:45:04 -07:00
|
|
|
expressions.push(part);
|
2015-08-03 12:05:45 +02:00
|
|
|
} else {
|
2016-04-12 09:40:37 -07:00
|
|
|
throw new ParseException('Blank expressions are not allowed in interpolated strings', input,
|
|
|
|
`at column ${this._findInterpolationErrorColumn(parts, i)} in`,
|
|
|
|
location);
|
2015-01-08 16:17:56 -08:00
|
|
|
}
|
|
|
|
}
|
2016-03-23 13:45:04 -07:00
|
|
|
return new SplitInterpolation(strings, expressions);
|
2015-02-05 20:13:32 +01:00
|
|
|
}
|
|
|
|
|
2015-05-01 14:05:19 -07:00
|
|
|
wrapLiteralPrimitive(input: string, location: any): ASTWithSource {
|
2015-02-05 20:13:32 +01:00
|
|
|
return new ASTWithSource(new LiteralPrimitive(input), input, location);
|
2015-01-08 16:17:56 -08:00
|
|
|
}
|
2015-08-20 16:34:47 +02:00
|
|
|
|
2016-04-14 16:16:22 -07:00
|
|
|
private _stripComments(input: string): string {
|
|
|
|
let i = this._commentStart(input);
|
|
|
|
return isPresent(i) ? input.substring(0, i).trim() : input;
|
|
|
|
}
|
|
|
|
|
|
|
|
private _commentStart(input: string): number {
|
|
|
|
var outerQuote = null;
|
|
|
|
for (var i = 0; i < input.length - 1; i++) {
|
|
|
|
let char = StringWrapper.charCodeAt(input, i);
|
|
|
|
let nextChar = StringWrapper.charCodeAt(input, i + 1);
|
|
|
|
|
|
|
|
if (char === $SLASH && nextChar == $SLASH && isBlank(outerQuote)) return i;
|
|
|
|
|
|
|
|
if (outerQuote === char) {
|
|
|
|
outerQuote = null;
|
|
|
|
} else if (isBlank(outerQuote) && isQuote(char)) {
|
|
|
|
outerQuote = char;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2015-08-20 16:34:47 +02:00
|
|
|
private _checkNoInterpolation(input: string, location: any): void {
|
2016-06-01 17:31:35 -07:00
|
|
|
var parts = StringWrapper.split(input, INTERPOLATION_REGEXP);
|
2015-08-20 16:34:47 +02:00
|
|
|
if (parts.length > 1) {
|
2016-04-12 09:40:37 -07:00
|
|
|
throw new ParseException('Got interpolation ({{}}) where expression was expected', input,
|
|
|
|
`at column ${this._findInterpolationErrorColumn(parts, 1)} in`,
|
|
|
|
location);
|
2015-08-20 16:34:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private _findInterpolationErrorColumn(parts: string[], partInErrIdx: number): number {
|
|
|
|
var errLocation = '';
|
|
|
|
for (var j = 0; j < partInErrIdx; j++) {
|
|
|
|
errLocation += j % 2 === 0 ? parts[j] : `{{${parts[j]}}}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
return errLocation.length;
|
|
|
|
}
|
2014-09-26 13:52:12 -07:00
|
|
|
}
|
2014-10-28 12:22:38 -04:00
|
|
|
|
2015-07-10 16:09:18 -07:00
|
|
|
export class _ParseAST {
|
2015-08-20 16:25:34 -07:00
|
|
|
index: number = 0;
|
2016-04-12 09:40:37 -07:00
|
|
|
constructor(public input: string, public location: any, public tokens: any[],
|
2016-01-06 14:13:44 -08:00
|
|
|
public parseAction: boolean) {}
|
2014-10-28 12:22:38 -04:00
|
|
|
|
2015-08-20 16:25:34 -07:00
|
|
|
peek(offset: number): Token {
|
2014-10-28 12:22:38 -04:00
|
|
|
var i = this.index + offset;
|
|
|
|
return i < this.tokens.length ? this.tokens[i] : EOF;
|
|
|
|
}
|
|
|
|
|
2015-05-01 14:05:19 -07:00
|
|
|
get next(): Token { return this.peek(0); }
|
2014-10-28 12:22:38 -04:00
|
|
|
|
2015-08-20 16:25:34 -07:00
|
|
|
get inputIndex(): number {
|
2014-11-03 17:25:16 -08:00
|
|
|
return (this.index < this.tokens.length) ? this.next.index : this.input.length;
|
|
|
|
}
|
|
|
|
|
2015-05-01 14:05:19 -07:00
|
|
|
advance() { this.index++; }
|
2014-10-28 12:22:38 -04:00
|
|
|
|
2015-08-20 16:25:34 -07:00
|
|
|
optionalCharacter(code: number): boolean {
|
2014-10-28 12:22:38 -04:00
|
|
|
if (this.next.isCharacter(code)) {
|
|
|
|
this.advance();
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-25 19:52:24 -07:00
|
|
|
peekKeywordLet(): boolean { return this.next.isKeywordLet(); }
|
|
|
|
|
|
|
|
peekDeprecatedKeywordVar(): boolean { return this.next.isKeywordDeprecatedVar(); }
|
2015-01-27 22:34:25 -08:00
|
|
|
|
2016-04-25 19:52:24 -07:00
|
|
|
peekDeprecatedOperatorHash(): boolean { return this.next.isOperator('#'); }
|
2015-01-27 22:34:25 -08:00
|
|
|
|
2015-08-20 16:25:34 -07:00
|
|
|
expectCharacter(code: number) {
|
2014-11-05 10:00:19 -08:00
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-01 14:05:19 -07:00
|
|
|
optionalOperator(op: string): boolean {
|
2014-10-30 23:47:22 -07:00
|
|
|
if (this.next.isOperator(op)) {
|
|
|
|
this.advance();
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-01 14:05:19 -07:00
|
|
|
expectOperator(operator: string) {
|
2014-11-05 10:00:19 -08:00
|
|
|
if (this.optionalOperator(operator)) return;
|
|
|
|
this.error(`Missing expected operator ${operator}`);
|
|
|
|
}
|
|
|
|
|
2015-05-01 14:05:19 -07:00
|
|
|
expectIdentifierOrKeyword(): string {
|
2014-11-05 10:00:19 -08:00
|
|
|
var n = this.next;
|
|
|
|
if (!n.isIdentifier() && !n.isKeyword()) {
|
2015-07-15 12:12:23 -07:00
|
|
|
this.error(`Unexpected token ${n}, expected identifier or keyword`);
|
2014-11-05 10:00:19 -08:00
|
|
|
}
|
|
|
|
this.advance();
|
|
|
|
return n.toString();
|
|
|
|
}
|
|
|
|
|
2015-05-01 14:05:19 -07:00
|
|
|
expectIdentifierOrKeywordOrString(): string {
|
2014-11-05 13:48:36 -08:00
|
|
|
var n = this.next;
|
|
|
|
if (!n.isIdentifier() && !n.isKeyword() && !n.isString()) {
|
2015-07-15 12:12:23 -07:00
|
|
|
this.error(`Unexpected token ${n}, expected identifier, keyword, or string`);
|
2014-11-05 13:48:36 -08:00
|
|
|
}
|
|
|
|
this.advance();
|
|
|
|
return n.toString();
|
|
|
|
}
|
|
|
|
|
2015-05-01 14:05:19 -07:00
|
|
|
parseChain(): AST {
|
2014-11-03 17:25:16 -08:00
|
|
|
var exprs = [];
|
|
|
|
while (this.index < this.tokens.length) {
|
2015-02-20 10:59:14 -08:00
|
|
|
var expr = this.parsePipe();
|
2015-06-17 11:17:21 -07:00
|
|
|
exprs.push(expr);
|
2014-11-04 10:19:37 -08:00
|
|
|
|
2014-11-06 12:00:09 -08:00
|
|
|
if (this.optionalCharacter($SEMICOLON)) {
|
2015-05-01 14:05:19 -07:00
|
|
|
if (!this.parseAction) {
|
2016-04-12 09:40:37 -07:00
|
|
|
this.error("Binding expression cannot contain chained expression");
|
2014-11-04 15:51:56 -08:00
|
|
|
}
|
2015-05-01 14:05:19 -07:00
|
|
|
while (this.optionalCharacter($SEMICOLON)) {
|
|
|
|
} // read all semicolons
|
2014-11-06 12:00:09 -08:00
|
|
|
} 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-06-26 11:10:52 -07:00
|
|
|
parsePipe(): AST {
|
2014-11-04 10:19:37 -08:00
|
|
|
var result = this.parseExpression();
|
2016-04-12 09:40:37 -07:00
|
|
|
if (this.optionalOperator("|")) {
|
2015-06-04 19:06:09 +02:00
|
|
|
if (this.parseAction) {
|
2016-04-12 09:40:37 -07:00
|
|
|
this.error("Cannot have a pipe in an action expression");
|
2015-06-04 19:06:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
|
|
|
var name = this.expectIdentifierOrKeyword();
|
|
|
|
var args = [];
|
|
|
|
while (this.optionalCharacter($COLON)) {
|
2015-10-13 18:55:46 -07:00
|
|
|
args.push(this.parseExpression());
|
2015-06-04 19:06:09 +02:00
|
|
|
}
|
2015-06-18 15:40:12 -07:00
|
|
|
result = new BindingPipe(result, name, args);
|
2016-04-12 09:40:37 -07:00
|
|
|
} while (this.optionalOperator("|"));
|
2014-11-04 10:19:37 -08:00
|
|
|
}
|
2015-06-04 19:06:09 +02:00
|
|
|
|
|
|
|
return result;
|
2014-11-04 10:19:37 -08:00
|
|
|
}
|
|
|
|
|
2015-08-12 16:26:21 -07:00
|
|
|
parseExpression(): AST { return this.parseConditional(); }
|
2014-11-03 17:25:16 -08:00
|
|
|
|
2015-06-26 11:10:52 -07:00
|
|
|
parseConditional(): AST {
|
2014-11-03 17:25:16 -08:00
|
|
|
var start = this.inputIndex;
|
|
|
|
var result = this.parseLogicalOr();
|
|
|
|
|
|
|
|
if (this.optionalOperator('?')) {
|
2015-06-04 19:06:09 +02:00
|
|
|
var yes = this.parsePipe();
|
2014-11-03 17:25:16 -08:00
|
|
|
if (!this.optionalCharacter($COLON)) {
|
|
|
|
var end = this.inputIndex;
|
|
|
|
var expression = this.input.substring(start, end);
|
|
|
|
this.error(`Conditional expression ${expression} requires all 3 expressions`);
|
|
|
|
}
|
2015-06-04 19:06:09 +02:00
|
|
|
var no = this.parsePipe();
|
2014-11-03 17:25:16 -08:00
|
|
|
return new Conditional(result, yes, no);
|
|
|
|
} else {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-26 11:10:52 -07:00
|
|
|
parseLogicalOr(): AST {
|
2014-10-30 23:47:22 -07:00
|
|
|
// '||'
|
|
|
|
var result = this.parseLogicalAnd();
|
|
|
|
while (this.optionalOperator('||')) {
|
|
|
|
result = new Binary('||', result, this.parseLogicalAnd());
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2015-06-26 11:10:52 -07:00
|
|
|
parseLogicalAnd(): AST {
|
2014-10-30 23:47:22 -07:00
|
|
|
// '&&'
|
|
|
|
var result = this.parseEquality();
|
|
|
|
while (this.optionalOperator('&&')) {
|
|
|
|
result = new Binary('&&', result, this.parseEquality());
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2015-06-26 11:10:52 -07:00
|
|
|
parseEquality(): AST {
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-26 11:10:52 -07:00
|
|
|
parseRelational(): AST {
|
2014-10-30 23:47:22 -07:00
|
|
|
// '<', '>', '<=', '>='
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-26 11:10:52 -07:00
|
|
|
parseAdditive(): AST {
|
2014-10-30 23:47:22 -07:00
|
|
|
// '+', '-'
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-26 11:10:52 -07:00
|
|
|
parseMultiplicative(): AST {
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-26 11:10:52 -07:00
|
|
|
parsePrefix(): AST {
|
2014-10-30 23:47:22 -07:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-01 14:05:19 -07: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)) {
|
2015-05-26 10:19:47 +02:00
|
|
|
result = this.parseAccessMemberOrMethodCall(result, false);
|
|
|
|
|
|
|
|
} else if (this.optionalOperator('?.')) {
|
|
|
|
result = this.parseAccessMemberOrMethodCall(result, true);
|
2014-11-05 13:48:36 -08:00
|
|
|
|
|
|
|
} else if (this.optionalCharacter($LBRACKET)) {
|
2015-06-04 19:06:09 +02:00
|
|
|
var key = this.parsePipe();
|
2014-11-05 13:48:36 -08:00
|
|
|
this.expectCharacter($RBRACKET);
|
2016-04-12 09:40:37 -07:00
|
|
|
if (this.optionalOperator("=")) {
|
2015-08-12 16:26:21 -07:00
|
|
|
var value = this.parseConditional();
|
|
|
|
result = new KeyedWrite(result, key, value);
|
|
|
|
} else {
|
|
|
|
result = new KeyedRead(result, key);
|
|
|
|
}
|
2014-11-05 13:48:36 -08:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2015-06-26 11:10:52 -07:00
|
|
|
parsePrimary(): AST {
|
2014-11-06 12:00:09 -08:00
|
|
|
if (this.optionalCharacter($LPAREN)) {
|
2015-06-04 19:06:09 +02:00
|
|
|
let result = this.parsePipe();
|
2014-11-06 12:00:09 -08:00
|
|
|
this.expectCharacter($RPAREN);
|
2015-06-26 11:10:52 -07:00
|
|
|
return result;
|
2014-11-06 12:00:09 -08:00
|
|
|
} 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()) {
|
2015-05-26 10:19:47 +02:00
|
|
|
return this.parseAccessMemberOrMethodCall(_implicitReceiver, false);
|
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()) {
|
2015-05-01 14:05:19 -07:00
|
|
|
var literalValue = this.next.toString();
|
2014-10-30 23:47:22 -07:00
|
|
|
this.advance();
|
2015-05-01 14:05:19 -07:00
|
|
|
return new LiteralPrimitive(literalValue);
|
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
|
|
|
}
|
2015-06-26 11:10:52 -07:00
|
|
|
// error() throws, so we don't reach here.
|
2016-04-12 09:40:37 -07:00
|
|
|
throw new BaseException("Fell through all cases in parsePrimary");
|
2014-11-03 17:25:16 -08:00
|
|
|
}
|
|
|
|
|
2015-08-28 11:29:19 -07:00
|
|
|
parseExpressionList(terminator: number): any[] {
|
2014-11-05 13:48:36 -08:00
|
|
|
var result = [];
|
|
|
|
if (!this.next.isCharacter(terminator)) {
|
|
|
|
do {
|
2015-06-17 11:17:21 -07:00
|
|
|
result.push(this.parsePipe());
|
2014-11-05 13:48:36 -08:00
|
|
|
} while (this.optionalCharacter($COMMA));
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2015-06-26 11:10:52 -07:00
|
|
|
parseLiteralMap(): LiteralMap {
|
2014-11-05 13:48:36 -08:00
|
|
|
var keys = [];
|
|
|
|
var values = [];
|
|
|
|
this.expectCharacter($LBRACE);
|
|
|
|
if (!this.optionalCharacter($RBRACE)) {
|
|
|
|
do {
|
|
|
|
var key = this.expectIdentifierOrKeywordOrString();
|
2015-06-17 11:17:21 -07:00
|
|
|
keys.push(key);
|
2014-11-05 13:48:36 -08:00
|
|
|
this.expectCharacter($COLON);
|
2015-06-17 11:17:21 -07:00
|
|
|
values.push(this.parsePipe());
|
2014-11-05 13:48:36 -08:00
|
|
|
} while (this.optionalCharacter($COMMA));
|
|
|
|
this.expectCharacter($RBRACE);
|
|
|
|
}
|
|
|
|
return new LiteralMap(keys, values);
|
|
|
|
}
|
|
|
|
|
2015-07-07 20:03:00 -07:00
|
|
|
parseAccessMemberOrMethodCall(receiver: AST, isSafe: boolean = false): AST {
|
2015-06-04 19:06:09 +02:00
|
|
|
let id = this.expectIdentifierOrKeyword();
|
2014-11-05 15:38:44 -08:00
|
|
|
|
|
|
|
if (this.optionalCharacter($LPAREN)) {
|
2015-06-04 19:06:09 +02:00
|
|
|
let args = this.parseCallArguments();
|
2014-11-05 15:38:44 -08:00
|
|
|
this.expectCharacter($RPAREN);
|
2016-01-06 14:13:44 -08:00
|
|
|
return isSafe ? new SafeMethodCall(receiver, id, args) : new MethodCall(receiver, id, args);
|
2014-11-05 15:38:44 -08:00
|
|
|
|
|
|
|
} else {
|
2015-08-12 16:26:21 -07:00
|
|
|
if (isSafe) {
|
2016-04-12 09:40:37 -07:00
|
|
|
if (this.optionalOperator("=")) {
|
|
|
|
this.error("The '?.' operator cannot be used in the assignment");
|
2015-08-12 16:26:21 -07:00
|
|
|
} else {
|
2016-01-06 14:13:44 -08:00
|
|
|
return new SafePropertyRead(receiver, id);
|
2015-08-12 16:26:21 -07:00
|
|
|
}
|
|
|
|
} else {
|
2016-04-12 09:40:37 -07:00
|
|
|
if (this.optionalOperator("=")) {
|
2015-08-12 16:26:21 -07:00
|
|
|
if (!this.parseAction) {
|
2016-04-12 09:40:37 -07:00
|
|
|
this.error("Bindings cannot contain assignments");
|
2015-08-12 16:26:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
let value = this.parseConditional();
|
2016-01-06 14:13:44 -08:00
|
|
|
return new PropertyWrite(receiver, id, value);
|
2015-08-12 16:26:21 -07:00
|
|
|
} else {
|
2016-01-06 14:13:44 -08:00
|
|
|
return new PropertyRead(receiver, id);
|
2015-08-12 16:26:21 -07:00
|
|
|
}
|
|
|
|
}
|
2014-11-05 15:38:44 -08:00
|
|
|
}
|
2015-08-12 16:26:21 -07:00
|
|
|
|
|
|
|
return null;
|
2014-11-05 15:38:44 -08:00
|
|
|
}
|
|
|
|
|
2015-06-26 11:10:52 -07:00
|
|
|
parseCallArguments(): BindingPipe[] {
|
2014-11-05 15:38:44 -08:00
|
|
|
if (this.next.isCharacter($RPAREN)) return [];
|
|
|
|
var positionals = [];
|
|
|
|
do {
|
2015-06-17 11:17:21 -07:00
|
|
|
positionals.push(this.parsePipe());
|
2015-04-27 17:15:31 +02:00
|
|
|
} while (this.optionalCharacter($COMMA));
|
2014-11-05 15:38:44 -08:00
|
|
|
return positionals;
|
2014-10-28 12:22:38 -04:00
|
|
|
}
|
2014-11-03 17:25:16 -08:00
|
|
|
|
2015-06-10 11:11:01 +02:00
|
|
|
parseBlockContent(): AST {
|
|
|
|
if (!this.parseAction) {
|
2016-04-12 09:40:37 -07:00
|
|
|
this.error("Binding expression cannot contain chained expression");
|
2015-06-10 11:11:01 +02:00
|
|
|
}
|
|
|
|
var exprs = [];
|
|
|
|
while (this.index < this.tokens.length && !this.next.isCharacter($RBRACE)) {
|
|
|
|
var expr = this.parseExpression();
|
2015-06-17 11:17:21 -07:00
|
|
|
exprs.push(expr);
|
2015-06-10 11:11:01 +02:00
|
|
|
|
|
|
|
if (this.optionalCharacter($SEMICOLON)) {
|
|
|
|
while (this.optionalCharacter($SEMICOLON)) {
|
|
|
|
} // read all semicolons
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (exprs.length == 0) return new EmptyExpr();
|
|
|
|
if (exprs.length == 1) return exprs[0];
|
|
|
|
|
|
|
|
return new Chain(exprs);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-12-01 16:05:44 -08:00
|
|
|
/**
|
|
|
|
* An identifier, a keyword, a string with an optional `-` inbetween.
|
|
|
|
*/
|
2015-06-26 11:10:52 -07:00
|
|
|
expectTemplateBindingKey(): string {
|
2014-12-01 16:05:44 -08:00
|
|
|
var result = '';
|
|
|
|
var operatorFound = false;
|
|
|
|
do {
|
|
|
|
result += this.expectIdentifierOrKeywordOrString();
|
|
|
|
operatorFound = this.optionalOperator('-');
|
|
|
|
if (operatorFound) {
|
|
|
|
result += '-';
|
|
|
|
}
|
|
|
|
} while (operatorFound);
|
|
|
|
|
|
|
|
return result.toString();
|
|
|
|
}
|
|
|
|
|
2016-04-25 19:52:24 -07:00
|
|
|
parseTemplateBindings(): TemplateBindingParseResult {
|
|
|
|
var bindings: TemplateBinding[] = [];
|
2015-05-11 17:04:55 -07:00
|
|
|
var prefix = null;
|
2016-04-25 19:52:24 -07:00
|
|
|
var warnings: string[] = [];
|
2014-11-18 16:38:36 -08:00
|
|
|
while (this.index < this.tokens.length) {
|
2016-04-25 19:52:24 -07:00
|
|
|
var keyIsVar: boolean = this.peekKeywordLet();
|
|
|
|
if (!keyIsVar && this.peekDeprecatedKeywordVar()) {
|
|
|
|
keyIsVar = true;
|
|
|
|
warnings.push(`"var" inside of expressions is deprecated. Use "let" instead!`);
|
|
|
|
}
|
|
|
|
if (!keyIsVar && this.peekDeprecatedOperatorHash()) {
|
|
|
|
keyIsVar = true;
|
|
|
|
warnings.push(`"#" inside of expressions is deprecated. Use "let" instead!`);
|
|
|
|
}
|
|
|
|
if (keyIsVar) {
|
|
|
|
this.advance();
|
|
|
|
}
|
2014-12-01 16:05:44 -08:00
|
|
|
var key = this.expectTemplateBindingKey();
|
2015-05-11 17:04:55 -07:00
|
|
|
if (!keyIsVar) {
|
|
|
|
if (prefix == null) {
|
|
|
|
prefix = key;
|
|
|
|
} else {
|
2015-11-23 16:02:19 -08:00
|
|
|
key = prefix + key[0].toUpperCase() + key.substring(1);
|
2015-05-11 17:04:55 -07:00
|
|
|
}
|
|
|
|
}
|
2014-11-18 16:38:36 -08:00
|
|
|
this.optionalCharacter($COLON);
|
|
|
|
var name = null;
|
|
|
|
var expression = null;
|
2015-05-21 12:17:46 -07:00
|
|
|
if (keyIsVar) {
|
2016-04-12 09:40:37 -07:00
|
|
|
if (this.optionalOperator("=")) {
|
2015-05-21 12:17:46 -07:00
|
|
|
name = this.expectTemplateBindingKey();
|
|
|
|
} else {
|
|
|
|
name = '\$implicit';
|
2014-12-01 16:05:44 -08:00
|
|
|
}
|
2016-04-25 19:52:24 -07:00
|
|
|
} else if (this.next !== EOF && !this.peekKeywordLet() && !this.peekDeprecatedKeywordVar() &&
|
|
|
|
!this.peekDeprecatedOperatorHash()) {
|
2015-05-21 12:17:46 -07:00
|
|
|
var start = this.inputIndex;
|
|
|
|
var ast = this.parsePipe();
|
|
|
|
var source = this.input.substring(start, this.inputIndex);
|
|
|
|
expression = new ASTWithSource(ast, source, this.location);
|
2014-11-18 16:38:36 -08:00
|
|
|
}
|
2015-06-17 11:17:21 -07:00
|
|
|
bindings.push(new TemplateBinding(key, keyIsVar, name, expression));
|
2014-11-18 16:38:36 -08:00
|
|
|
if (!this.optionalCharacter($SEMICOLON)) {
|
|
|
|
this.optionalCharacter($COMMA);
|
2015-04-27 17:15:31 +02:00
|
|
|
}
|
2014-11-18 16:38:36 -08:00
|
|
|
}
|
2016-04-25 19:52:24 -07:00
|
|
|
return new TemplateBindingParseResult(bindings, warnings);
|
2014-11-18 16:38:36 -08:00
|
|
|
}
|
|
|
|
|
2015-08-20 16:25:34 -07:00
|
|
|
error(message: string, index: number = null) {
|
2014-11-03 17:25:16 -08:00
|
|
|
if (isBlank(index)) index = this.index;
|
|
|
|
|
2015-05-01 14:05:19 -07:00
|
|
|
var location = (index < this.tokens.length) ? `at column ${this.tokens[index].index + 1} in` :
|
|
|
|
`at the end of the expression`;
|
2014-11-03 17:25:16 -08:00
|
|
|
|
2015-08-03 12:05:45 +02:00
|
|
|
throw new ParseException(message, this.input, location, this.location);
|
2014-11-03 17:25:16 -08:00
|
|
|
}
|
2014-11-04 15:51:56 -08:00
|
|
|
}
|
2015-06-22 08:21:03 -07:00
|
|
|
|
|
|
|
class SimpleExpressionChecker implements AstVisitor {
|
2015-06-26 11:10:52 -07:00
|
|
|
static check(ast: AST): boolean {
|
2015-06-22 08:21:03 -07:00
|
|
|
var s = new SimpleExpressionChecker();
|
|
|
|
ast.visit(s);
|
|
|
|
return s.simple;
|
|
|
|
}
|
|
|
|
|
|
|
|
simple = true;
|
|
|
|
|
2016-01-06 14:13:44 -08:00
|
|
|
visitImplicitReceiver(ast: ImplicitReceiver, context: any) {}
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2016-01-06 14:13:44 -08:00
|
|
|
visitInterpolation(ast: Interpolation, context: any) { this.simple = false; }
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2016-01-06 14:13:44 -08:00
|
|
|
visitLiteralPrimitive(ast: LiteralPrimitive, context: any) {}
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2016-01-06 14:13:44 -08:00
|
|
|
visitPropertyRead(ast: PropertyRead, context: any) {}
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2016-01-06 14:13:44 -08:00
|
|
|
visitPropertyWrite(ast: PropertyWrite, context: any) { this.simple = false; }
|
2015-08-12 16:26:21 -07:00
|
|
|
|
2016-01-06 14:13:44 -08:00
|
|
|
visitSafePropertyRead(ast: SafePropertyRead, context: any) { this.simple = false; }
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2016-01-06 14:13:44 -08:00
|
|
|
visitMethodCall(ast: MethodCall, context: any) { this.simple = false; }
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2016-01-06 14:13:44 -08:00
|
|
|
visitSafeMethodCall(ast: SafeMethodCall, context: any) { this.simple = false; }
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2016-01-06 14:13:44 -08:00
|
|
|
visitFunctionCall(ast: FunctionCall, context: any) { this.simple = false; }
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2016-01-06 14:13:44 -08:00
|
|
|
visitLiteralArray(ast: LiteralArray, context: any) { this.visitAll(ast.expressions); }
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2016-01-06 14:13:44 -08:00
|
|
|
visitLiteralMap(ast: LiteralMap, context: any) { this.visitAll(ast.values); }
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2016-01-06 14:13:44 -08:00
|
|
|
visitBinary(ast: Binary, context: any) { this.simple = false; }
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2016-01-06 14:13:44 -08:00
|
|
|
visitPrefixNot(ast: PrefixNot, context: any) { this.simple = false; }
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2016-01-06 14:13:44 -08:00
|
|
|
visitConditional(ast: Conditional, context: any) { this.simple = false; }
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2016-01-06 14:13:44 -08:00
|
|
|
visitPipe(ast: BindingPipe, context: any) { this.simple = false; }
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2016-01-06 14:13:44 -08:00
|
|
|
visitKeyedRead(ast: KeyedRead, context: any) { this.simple = false; }
|
2015-08-12 16:26:21 -07:00
|
|
|
|
2016-01-06 14:13:44 -08:00
|
|
|
visitKeyedWrite(ast: KeyedWrite, context: any) { this.simple = false; }
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2015-08-28 11:29:19 -07:00
|
|
|
visitAll(asts: any[]): any[] {
|
2015-06-22 08:21:03 -07:00
|
|
|
var res = ListWrapper.createFixedSize(asts.length);
|
|
|
|
for (var i = 0; i < asts.length; ++i) {
|
|
|
|
res[i] = asts[i].visit(this);
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2016-01-06 14:13:44 -08:00
|
|
|
visitChain(ast: Chain, context: any) { this.simple = false; }
|
2015-11-23 17:58:12 -08:00
|
|
|
|
2016-01-06 14:13:44 -08:00
|
|
|
visitQuote(ast: Quote, context: any) { this.simple = false; }
|
2015-06-22 08:21:03 -07:00
|
|
|
}
|