2016-06-23 09:47:54 -07:00
|
|
|
/**
|
|
|
|
* @license
|
2020-05-19 12:08:49 -07:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2016-06-23 09:47:54 -07:00
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2016-06-21 11:10:25 -07:00
|
|
|
import * as chars from '../chars';
|
2016-08-01 12:19:09 -07:00
|
|
|
import {DEFAULT_INTERPOLATION_CONFIG, InterpolationConfig} from '../ml_parser/interpolation_config';
|
2017-03-02 09:37:01 -08:00
|
|
|
import {escapeRegExp} from '../util';
|
2017-05-11 10:15:54 -07:00
|
|
|
|
2020-04-08 10:14:18 -07:00
|
|
|
import {AbsoluteSourceSpan, AST, AstVisitor, ASTWithSource, Binary, BindingPipe, Chain, Conditional, EmptyExpr, ExpressionBinding, FunctionCall, ImplicitReceiver, Interpolation, KeyedRead, KeyedWrite, LiteralArray, LiteralMap, LiteralMapKey, LiteralPrimitive, MethodCall, NonNullAssert, ParserError, ParseSpan, PrefixNot, PropertyRead, PropertyWrite, Quote, SafeMethodCall, SafePropertyRead, TemplateBinding, TemplateBindingIdentifier, VariableBinding} from './ast';
|
|
|
|
import {EOF, isIdentifier, isQuote, Lexer, Token, TokenType} from './lexer';
|
2015-05-01 14:05:19 -07:00
|
|
|
|
2016-03-23 13:45:04 -07:00
|
|
|
export class SplitInterpolation {
|
2016-10-06 15:22:10 -07:00
|
|
|
constructor(public strings: string[], public expressions: string[], public offsets: number[]) {}
|
2016-03-23 13:45:04 -07:00
|
|
|
}
|
|
|
|
|
2016-04-25 19:52:24 -07:00
|
|
|
export class TemplateBindingParseResult {
|
2016-07-06 14:06:47 -07:00
|
|
|
constructor(
|
|
|
|
public templateBindings: TemplateBinding[], public warnings: string[],
|
|
|
|
public errors: ParserError[]) {}
|
2016-04-25 19:52:24 -07:00
|
|
|
}
|
|
|
|
|
2019-12-08 15:21:38 +01:00
|
|
|
const defaultInterpolateRegExp = _createInterpolateRegExp(DEFAULT_INTERPOLATION_CONFIG);
|
|
|
|
function _getInterpolateRegExp(config: InterpolationConfig): RegExp {
|
|
|
|
if (config === DEFAULT_INTERPOLATION_CONFIG) {
|
|
|
|
return defaultInterpolateRegExp;
|
|
|
|
} else {
|
|
|
|
return _createInterpolateRegExp(config);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-20 09:52:41 -07:00
|
|
|
function _createInterpolateRegExp(config: InterpolationConfig): RegExp {
|
2016-08-05 09:50:49 -07:00
|
|
|
const pattern = escapeRegExp(config.start) + '([\\s\\S]*?)' + escapeRegExp(config.end);
|
|
|
|
return new RegExp(pattern, 'g');
|
2016-06-20 09:52:41 -07:00
|
|
|
}
|
|
|
|
|
2014-09-26 13:52:12 -07:00
|
|
|
export class Parser {
|
2016-07-06 14:06:47 -07:00
|
|
|
private errors: ParserError[] = [];
|
|
|
|
|
2016-06-22 17:25:42 -07:00
|
|
|
constructor(private _lexer: Lexer) {}
|
2014-10-28 12:22:38 -04:00
|
|
|
|
2020-01-06 17:27:29 -08:00
|
|
|
simpleExpressionChecker = SimpleExpressionChecker;
|
|
|
|
|
2016-06-20 09:52:41 -07:00
|
|
|
parseAction(
|
2019-07-16 12:18:32 -07:00
|
|
|
input: string, location: any, absoluteOffset: number,
|
2016-06-20 09:52:41 -07:00
|
|
|
interpolationConfig: InterpolationConfig = DEFAULT_INTERPOLATION_CONFIG): ASTWithSource {
|
|
|
|
this._checkNoInterpolation(input, location, interpolationConfig);
|
2016-10-06 15:22:10 -07:00
|
|
|
const sourceToLex = this._stripComments(input);
|
2016-08-01 11:24:49 -07:00
|
|
|
const tokens = this._lexer.tokenize(this._stripComments(input));
|
2016-10-06 15:22:10 -07:00
|
|
|
const ast = new _ParseAST(
|
2019-07-16 12:18:32 -07:00
|
|
|
input, location, absoluteOffset, tokens, sourceToLex.length, true, this.errors,
|
2016-10-06 15:22:10 -07:00
|
|
|
input.length - sourceToLex.length)
|
|
|
|
.parseChain();
|
2019-07-16 12:18:32 -07:00
|
|
|
return new ASTWithSource(ast, input, location, absoluteOffset, this.errors);
|
2014-11-04 15:51:56 -08:00
|
|
|
}
|
|
|
|
|
2016-06-20 09:52:41 -07:00
|
|
|
parseBinding(
|
2019-07-16 12:18:32 -07:00
|
|
|
input: string, location: any, absoluteOffset: number,
|
2016-06-20 09:52:41 -07:00
|
|
|
interpolationConfig: InterpolationConfig = DEFAULT_INTERPOLATION_CONFIG): ASTWithSource {
|
2019-07-16 12:18:32 -07:00
|
|
|
const ast = this._parseBindingAst(input, location, absoluteOffset, interpolationConfig);
|
|
|
|
return new ASTWithSource(ast, input, location, absoluteOffset, this.errors);
|
2014-11-18 16:38:36 -08:00
|
|
|
}
|
|
|
|
|
2020-01-06 17:27:29 -08:00
|
|
|
private checkSimpleExpression(ast: AST): string[] {
|
|
|
|
const checker = new this.simpleExpressionChecker();
|
|
|
|
ast.visit(checker);
|
|
|
|
return checker.errors;
|
|
|
|
}
|
|
|
|
|
2016-06-20 09:52:41 -07:00
|
|
|
parseSimpleBinding(
|
2019-07-16 12:18:32 -07:00
|
|
|
input: string, location: string, absoluteOffset: number,
|
2016-06-20 09:52:41 -07:00
|
|
|
interpolationConfig: InterpolationConfig = DEFAULT_INTERPOLATION_CONFIG): ASTWithSource {
|
2019-07-16 12:18:32 -07:00
|
|
|
const ast = this._parseBindingAst(input, location, absoluteOffset, interpolationConfig);
|
2020-01-06 17:27:29 -08:00
|
|
|
const errors = this.checkSimpleExpression(ast);
|
2016-10-20 15:24:58 -07:00
|
|
|
if (errors.length > 0) {
|
2016-07-06 14:06:47 -07:00
|
|
|
this._reportError(
|
2016-10-20 15:24:58 -07:00
|
|
|
`Host binding expression cannot contain ${errors.join(' ')}`, input, location);
|
2015-11-23 17:58:12 -08:00
|
|
|
}
|
2019-07-16 12:18:32 -07:00
|
|
|
return new ASTWithSource(ast, input, location, absoluteOffset, this.errors);
|
2016-07-06 14:06:47 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
private _reportError(message: string, input: string, errLocation: string, ctxLocation?: any) {
|
|
|
|
this.errors.push(new ParserError(message, input, errLocation, ctxLocation));
|
2015-11-23 17:58:12 -08:00
|
|
|
}
|
|
|
|
|
2016-06-20 09:52:41 -07:00
|
|
|
private _parseBindingAst(
|
2019-07-16 12:18:32 -07:00
|
|
|
input: string, location: string, absoluteOffset: number,
|
|
|
|
interpolationConfig: InterpolationConfig): AST {
|
2015-11-23 17:58:12 -08:00
|
|
|
// 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.
|
2019-07-29 13:23:29 -07:00
|
|
|
const quote = this._parseQuote(input, location, absoluteOffset);
|
2015-11-23 17:58:12 -08:00
|
|
|
|
2017-03-02 09:37:01 -08:00
|
|
|
if (quote != null) {
|
2015-11-23 17:58:12 -08:00
|
|
|
return quote;
|
|
|
|
}
|
|
|
|
|
2016-06-20 09:52:41 -07:00
|
|
|
this._checkNoInterpolation(input, location, interpolationConfig);
|
2016-10-06 15:22:10 -07:00
|
|
|
const sourceToLex = this._stripComments(input);
|
|
|
|
const tokens = this._lexer.tokenize(sourceToLex);
|
|
|
|
return new _ParseAST(
|
2019-07-16 12:18:32 -07:00
|
|
|
input, location, absoluteOffset, tokens, sourceToLex.length, false, this.errors,
|
2016-10-06 15:22:10 -07:00
|
|
|
input.length - sourceToLex.length)
|
|
|
|
.parseChain();
|
2015-11-23 17:58:12 -08:00
|
|
|
}
|
|
|
|
|
2019-07-29 13:23:29 -07:00
|
|
|
private _parseQuote(input: string|null, location: any, absoluteOffset: number): AST|null {
|
2017-03-02 09:37:01 -08:00
|
|
|
if (input == null) return null;
|
2016-11-12 14:08:58 +01:00
|
|
|
const prefixSeparatorIndex = input.indexOf(':');
|
2015-11-23 17:58:12 -08:00
|
|
|
if (prefixSeparatorIndex == -1) return null;
|
2016-11-12 14:08:58 +01:00
|
|
|
const prefix = input.substring(0, prefixSeparatorIndex).trim();
|
2015-11-25 15:28:42 -08:00
|
|
|
if (!isIdentifier(prefix)) return null;
|
2016-11-12 14:08:58 +01:00
|
|
|
const uninterpretedExpression = input.substring(prefixSeparatorIndex + 1);
|
2019-07-29 13:23:29 -07:00
|
|
|
const span = new ParseSpan(0, input.length);
|
|
|
|
return new Quote(
|
|
|
|
span, span.toAbsolute(absoluteOffset), prefix, uninterpretedExpression, location);
|
2015-06-22 08:21:03 -07:00
|
|
|
}
|
|
|
|
|
2020-03-02 16:38:55 -08:00
|
|
|
/**
|
|
|
|
* Parse microsyntax template expression and return a list of bindings or
|
|
|
|
* parsing errors in case the given expression is invalid.
|
|
|
|
*
|
|
|
|
* For example,
|
|
|
|
* ```
|
|
|
|
* <div *ngFor="let item of items">
|
2020-03-05 15:38:25 -08:00
|
|
|
* ^ ^ absoluteValueOffset for `templateValue`
|
|
|
|
* absoluteKeyOffset for `templateKey`
|
2020-03-02 16:38:55 -08:00
|
|
|
* ```
|
|
|
|
* contains three bindings:
|
|
|
|
* 1. ngFor -> null
|
|
|
|
* 2. item -> NgForOfContext.$implicit
|
|
|
|
* 3. ngForOf -> items
|
|
|
|
*
|
|
|
|
* This is apparent from the de-sugared template:
|
|
|
|
* ```
|
|
|
|
* <ng-template ngFor let-item [ngForOf]="items">
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
* @param templateKey name of directive, without the * prefix. For example: ngIf, ngFor
|
|
|
|
* @param templateValue RHS of the microsyntax attribute
|
|
|
|
* @param templateUrl template filename if it's external, component filename if it's inline
|
2020-03-05 15:38:25 -08:00
|
|
|
* @param absoluteKeyOffset start of the `templateKey`
|
|
|
|
* @param absoluteValueOffset start of the `templateValue`
|
2020-03-02 16:38:55 -08:00
|
|
|
*/
|
|
|
|
parseTemplateBindings(
|
2020-03-05 15:38:25 -08:00
|
|
|
templateKey: string, templateValue: string, templateUrl: string, absoluteKeyOffset: number,
|
|
|
|
absoluteValueOffset: number): TemplateBindingParseResult {
|
2020-03-02 16:38:55 -08:00
|
|
|
const tokens = this._lexer.tokenize(templateValue);
|
2020-03-05 15:38:25 -08:00
|
|
|
const parser = new _ParseAST(
|
|
|
|
templateValue, templateUrl, absoluteValueOffset, tokens, templateValue.length,
|
|
|
|
false /* parseAction */, this.errors, 0 /* relative offset */);
|
|
|
|
return parser.parseTemplateBindings({
|
|
|
|
source: templateKey,
|
|
|
|
span: new AbsoluteSourceSpan(absoluteKeyOffset, absoluteKeyOffset + templateKey.length),
|
|
|
|
});
|
2014-10-28 12:22:38 -04:00
|
|
|
}
|
2015-01-08 16:17:56 -08:00
|
|
|
|
2016-06-20 09:52:41 -07:00
|
|
|
parseInterpolation(
|
2019-07-16 12:18:32 -07:00
|
|
|
input: string, location: any, absoluteOffset: number,
|
2017-03-24 09:59:58 -07:00
|
|
|
interpolationConfig: InterpolationConfig = DEFAULT_INTERPOLATION_CONFIG): ASTWithSource|null {
|
2016-11-12 14:08:58 +01:00
|
|
|
const split = this.splitInterpolation(input, location, interpolationConfig);
|
2016-03-23 13:45:04 -07:00
|
|
|
if (split == null) return null;
|
|
|
|
|
2016-11-12 14:08:58 +01:00
|
|
|
const expressions: AST[] = [];
|
2016-03-23 13:45:04 -07:00
|
|
|
|
|
|
|
for (let i = 0; i < split.expressions.length; ++i) {
|
2016-10-06 15:22:10 -07:00
|
|
|
const expressionText = split.expressions[i];
|
|
|
|
const sourceToLex = this._stripComments(expressionText);
|
2017-06-08 12:10:24 +03:00
|
|
|
const tokens = this._lexer.tokenize(sourceToLex);
|
2016-10-06 15:22:10 -07:00
|
|
|
const ast = new _ParseAST(
|
2019-07-16 12:18:32 -07:00
|
|
|
input, location, absoluteOffset, tokens, sourceToLex.length, false,
|
|
|
|
this.errors, split.offsets[i] + (expressionText.length - sourceToLex.length))
|
2016-10-06 15:22:10 -07:00
|
|
|
.parseChain();
|
2016-03-23 13:45:04 -07:00
|
|
|
expressions.push(ast);
|
|
|
|
}
|
|
|
|
|
2019-07-29 13:23:29 -07:00
|
|
|
const span = new ParseSpan(0, input == null ? 0 : input.length);
|
2016-07-06 14:06:47 -07:00
|
|
|
return new ASTWithSource(
|
2019-07-29 13:23:29 -07:00
|
|
|
new Interpolation(span, span.toAbsolute(absoluteOffset), split.strings, expressions), input,
|
|
|
|
location, absoluteOffset, this.errors);
|
2016-03-23 13:45:04 -07:00
|
|
|
}
|
|
|
|
|
2016-06-20 09:52:41 -07:00
|
|
|
splitInterpolation(
|
|
|
|
input: string, location: string,
|
2017-03-24 09:59:58 -07:00
|
|
|
interpolationConfig: InterpolationConfig = DEFAULT_INTERPOLATION_CONFIG): SplitInterpolation
|
|
|
|
|null {
|
2019-12-08 15:21:38 +01:00
|
|
|
const regexp = _getInterpolateRegExp(interpolationConfig);
|
2016-10-06 15:10:27 -07:00
|
|
|
const parts = input.split(regexp);
|
2015-01-08 16:17:56 -08:00
|
|
|
if (parts.length <= 1) {
|
|
|
|
return null;
|
|
|
|
}
|
2016-07-08 16:46:49 -07:00
|
|
|
const strings: string[] = [];
|
|
|
|
const expressions: string[] = [];
|
2016-10-06 15:22:10 -07:00
|
|
|
const offsets: number[] = [];
|
|
|
|
let offset = 0;
|
2016-07-08 16:46:49 -07:00
|
|
|
for (let i = 0; i < parts.length; i++) {
|
2016-11-12 14:08:58 +01:00
|
|
|
const 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);
|
2016-10-06 15:22:10 -07:00
|
|
|
offset += part.length;
|
2015-08-03 12:05:45 +02:00
|
|
|
} else if (part.trim().length > 0) {
|
2016-10-06 15:22:10 -07:00
|
|
|
offset += interpolationConfig.start.length;
|
2016-03-23 13:45:04 -07:00
|
|
|
expressions.push(part);
|
2016-10-06 15:22:10 -07:00
|
|
|
offsets.push(offset);
|
|
|
|
offset += part.length + interpolationConfig.end.length;
|
2015-08-03 12:05:45 +02:00
|
|
|
} else {
|
2016-07-06 14:06:47 -07:00
|
|
|
this._reportError(
|
2016-06-08 16:38:52 -07:00
|
|
|
'Blank expressions are not allowed in interpolated strings', input,
|
2016-06-20 09:52:41 -07:00
|
|
|
`at column ${this._findInterpolationErrorColumn(parts, i, interpolationConfig)} in`,
|
|
|
|
location);
|
2019-11-06 10:34:09 -08:00
|
|
|
expressions.push('$implicit');
|
2016-11-10 13:15:09 -08:00
|
|
|
offsets.push(offset);
|
2015-01-08 16:17:56 -08:00
|
|
|
}
|
|
|
|
}
|
2016-10-06 15:22:10 -07:00
|
|
|
return new SplitInterpolation(strings, expressions, offsets);
|
2015-02-05 20:13:32 +01:00
|
|
|
}
|
|
|
|
|
2019-07-16 12:18:32 -07:00
|
|
|
wrapLiteralPrimitive(input: string|null, location: any, absoluteOffset: number): ASTWithSource {
|
2019-07-29 13:23:29 -07:00
|
|
|
const span = new ParseSpan(0, input == null ? 0 : input.length);
|
2016-07-06 14:06:47 -07:00
|
|
|
return new ASTWithSource(
|
2019-07-29 13:23:29 -07:00
|
|
|
new LiteralPrimitive(span, span.toAbsolute(absoluteOffset), input), input, location,
|
|
|
|
absoluteOffset, this.errors);
|
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 {
|
2016-08-01 11:24:49 -07:00
|
|
|
const i = this._commentStart(input);
|
2017-03-02 09:37:01 -08:00
|
|
|
return i != null ? input.substring(0, i).trim() : input;
|
2016-04-14 16:16:22 -07:00
|
|
|
}
|
|
|
|
|
2017-03-24 09:59:58 -07:00
|
|
|
private _commentStart(input: string): number|null {
|
|
|
|
let outerQuote: number|null = null;
|
2016-08-01 11:24:49 -07:00
|
|
|
for (let i = 0; i < input.length - 1; i++) {
|
2016-10-06 15:10:27 -07:00
|
|
|
const char = input.charCodeAt(i);
|
|
|
|
const nextChar = input.charCodeAt(i + 1);
|
2016-04-14 16:16:22 -07:00
|
|
|
|
2017-03-02 09:37:01 -08:00
|
|
|
if (char === chars.$SLASH && nextChar == chars.$SLASH && outerQuote == null) return i;
|
2016-04-14 16:16:22 -07:00
|
|
|
|
|
|
|
if (outerQuote === char) {
|
|
|
|
outerQuote = null;
|
2017-03-02 09:37:01 -08:00
|
|
|
} else if (outerQuote == null && isQuote(char)) {
|
2016-04-14 16:16:22 -07:00
|
|
|
outerQuote = char;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2016-06-20 09:52:41 -07:00
|
|
|
private _checkNoInterpolation(
|
|
|
|
input: string, location: any, interpolationConfig: InterpolationConfig): void {
|
2019-12-08 15:21:38 +01:00
|
|
|
const regexp = _getInterpolateRegExp(interpolationConfig);
|
2016-11-12 14:08:58 +01:00
|
|
|
const parts = input.split(regexp);
|
2015-08-20 16:34:47 +02:00
|
|
|
if (parts.length > 1) {
|
2016-07-06 14:06:47 -07:00
|
|
|
this._reportError(
|
2020-04-08 10:14:18 -07:00
|
|
|
`Got interpolation (${interpolationConfig.start}${
|
|
|
|
interpolationConfig.end}) where expression was expected`,
|
2016-06-20 09:52:41 -07:00
|
|
|
input,
|
|
|
|
`at column ${this._findInterpolationErrorColumn(parts, 1, interpolationConfig)} in`,
|
|
|
|
location);
|
2015-08-20 16:34:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-20 09:52:41 -07:00
|
|
|
private _findInterpolationErrorColumn(
|
|
|
|
parts: string[], partInErrIdx: number, interpolationConfig: InterpolationConfig): number {
|
2016-11-12 14:08:58 +01:00
|
|
|
let errLocation = '';
|
|
|
|
for (let j = 0; j < partInErrIdx; j++) {
|
2016-06-20 09:52:41 -07:00
|
|
|
errLocation += j % 2 === 0 ?
|
|
|
|
parts[j] :
|
|
|
|
`${interpolationConfig.start}${parts[j]}${interpolationConfig.end}`;
|
2015-08-20 16:34:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return errLocation.length;
|
|
|
|
}
|
2014-09-26 13:52:12 -07:00
|
|
|
}
|
2014-10-28 12:22:38 -04:00
|
|
|
|
2020-01-06 17:27:29 -08:00
|
|
|
export class IvyParser extends Parser {
|
|
|
|
simpleExpressionChecker = IvySimpleExpressionChecker; //
|
|
|
|
}
|
|
|
|
|
2015-07-10 16:09:18 -07:00
|
|
|
export class _ParseAST {
|
2016-07-06 14:06:47 -07:00
|
|
|
private rparensExpected = 0;
|
|
|
|
private rbracketsExpected = 0;
|
|
|
|
private rbracesExpected = 0;
|
|
|
|
|
2019-07-29 13:23:29 -07:00
|
|
|
// Cache of expression start and input indeces to the absolute source span they map to, used to
|
|
|
|
// prevent creating superfluous source spans in `sourceSpan`.
|
|
|
|
// A serial of the expression start and input index is used for mapping because both are stateful
|
|
|
|
// and may change for subsequent expressions visited by the parser.
|
|
|
|
private sourceSpanCache = new Map<string, AbsoluteSourceSpan>();
|
|
|
|
|
2015-08-20 16:25:34 -07:00
|
|
|
index: number = 0;
|
2016-07-06 14:06:47 -07:00
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
constructor(
|
2019-07-16 12:18:32 -07:00
|
|
|
public input: string, public location: any, public absoluteOffset: number,
|
|
|
|
public tokens: Token[], public inputLength: number, public parseAction: boolean,
|
|
|
|
private errors: ParserError[], private offset: number) {}
|
2014-10-28 12:22:38 -04:00
|
|
|
|
2015-08-20 16:25:34 -07:00
|
|
|
peek(offset: number): Token {
|
2016-11-12 14:08:58 +01:00
|
|
|
const i = this.index + offset;
|
2014-10-28 12:22:38 -04:00
|
|
|
return i < this.tokens.length ? this.tokens[i] : EOF;
|
|
|
|
}
|
|
|
|
|
2020-04-08 10:14:18 -07:00
|
|
|
get next(): Token {
|
|
|
|
return this.peek(0);
|
|
|
|
}
|
2014-10-28 12:22:38 -04:00
|
|
|
|
2020-04-27 18:54:30 -07:00
|
|
|
/** Whether all the parser input has been processed. */
|
|
|
|
get atEOF(): boolean {
|
|
|
|
return this.index >= this.tokens.length;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Index of the next token to be processed, or the end of the last token if all have been
|
|
|
|
* processed.
|
|
|
|
*/
|
2015-08-20 16:25:34 -07:00
|
|
|
get inputIndex(): number {
|
2020-04-27 18:54:30 -07:00
|
|
|
return this.atEOF ? this.currentEndIndex : this.next.index + this.offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* End index of the last processed token, or the start of the first token if none have been
|
|
|
|
* processed.
|
|
|
|
*/
|
|
|
|
get currentEndIndex(): number {
|
|
|
|
if (this.index > 0) {
|
|
|
|
const curToken = this.peek(-1);
|
|
|
|
return curToken.end + this.offset;
|
|
|
|
}
|
|
|
|
// No tokens have been processed yet; return the next token's start or the length of the input
|
|
|
|
// if there is no token.
|
|
|
|
if (this.tokens.length === 0) {
|
|
|
|
return this.inputLength + this.offset;
|
|
|
|
}
|
|
|
|
return this.next.index + this.offset;
|
2014-11-03 17:25:16 -08:00
|
|
|
}
|
|
|
|
|
2020-03-05 15:38:25 -08:00
|
|
|
/**
|
|
|
|
* Returns the absolute offset of the start of the current token.
|
|
|
|
*/
|
2020-04-08 10:14:18 -07:00
|
|
|
get currentAbsoluteOffset(): number {
|
|
|
|
return this.absoluteOffset + this.inputIndex;
|
|
|
|
}
|
2020-03-05 15:38:25 -08:00
|
|
|
|
2019-12-18 19:30:56 -06:00
|
|
|
span(start: number) {
|
2020-04-27 18:54:30 -07:00
|
|
|
return new ParseSpan(start, this.currentEndIndex);
|
2019-12-18 19:30:56 -06:00
|
|
|
}
|
2016-07-06 14:06:47 -07:00
|
|
|
|
2019-07-29 13:23:29 -07:00
|
|
|
sourceSpan(start: number): AbsoluteSourceSpan {
|
|
|
|
const serial = `${start}@${this.inputIndex}`;
|
|
|
|
if (!this.sourceSpanCache.has(serial)) {
|
|
|
|
this.sourceSpanCache.set(serial, this.span(start).toAbsolute(this.absoluteOffset));
|
|
|
|
}
|
2020-04-08 10:14:18 -07:00
|
|
|
return this.sourceSpanCache.get(serial)!;
|
2019-07-29 13:23:29 -07:00
|
|
|
}
|
|
|
|
|
2020-04-08 10:14:18 -07:00
|
|
|
advance() {
|
|
|
|
this.index++;
|
|
|
|
}
|
2014-10-28 12:22:38 -04:00
|
|
|
|
2020-03-05 15:05:30 -08:00
|
|
|
consumeOptionalCharacter(code: number): boolean {
|
2014-10-28 12:22:38 -04:00
|
|
|
if (this.next.isCharacter(code)) {
|
|
|
|
this.advance();
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-08 10:14:18 -07:00
|
|
|
peekKeywordLet(): boolean {
|
|
|
|
return this.next.isKeywordLet();
|
|
|
|
}
|
|
|
|
peekKeywordAs(): boolean {
|
|
|
|
return this.next.isKeywordAs();
|
|
|
|
}
|
2016-04-25 19:52:24 -07:00
|
|
|
|
2015-08-20 16:25:34 -07:00
|
|
|
expectCharacter(code: number) {
|
2020-03-05 15:05:30 -08:00
|
|
|
if (this.consumeOptionalCharacter(code)) return;
|
2016-10-06 15:10:27 -07:00
|
|
|
this.error(`Missing expected ${String.fromCharCode(code)}`);
|
2014-11-05 10:00:19 -08:00
|
|
|
}
|
|
|
|
|
2020-03-09 20:42:28 -07:00
|
|
|
consumeOptionalOperator(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) {
|
2020-03-09 20:42:28 -07:00
|
|
|
if (this.consumeOptionalOperator(operator)) return;
|
2014-11-05 10:00:19 -08:00
|
|
|
this.error(`Missing expected operator ${operator}`);
|
|
|
|
}
|
|
|
|
|
2017-07-05 10:20:02 -07:00
|
|
|
expectIdentifierOrKeyword(): string {
|
2016-11-12 14:08:58 +01:00
|
|
|
const n = this.next;
|
2014-11-05 10:00:19 -08:00
|
|
|
if (!n.isIdentifier() && !n.isKeyword()) {
|
2015-07-15 12:12:23 -07:00
|
|
|
this.error(`Unexpected token ${n}, expected identifier or keyword`);
|
2016-07-06 14:06:47 -07:00
|
|
|
return '';
|
2014-11-05 10:00:19 -08:00
|
|
|
}
|
|
|
|
this.advance();
|
2017-07-05 10:20:02 -07:00
|
|
|
return n.toString() as string;
|
2014-11-05 10:00:19 -08:00
|
|
|
}
|
|
|
|
|
2017-07-05 10:20:02 -07:00
|
|
|
expectIdentifierOrKeywordOrString(): string {
|
2016-11-12 14:08:58 +01:00
|
|
|
const n = this.next;
|
2014-11-05 13:48:36 -08:00
|
|
|
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`);
|
2016-07-06 14:06:47 -07:00
|
|
|
return '';
|
2014-11-05 13:48:36 -08:00
|
|
|
}
|
|
|
|
this.advance();
|
2017-07-05 10:20:02 -07:00
|
|
|
return n.toString() as string;
|
2014-11-05 13:48:36 -08:00
|
|
|
}
|
|
|
|
|
2015-05-01 14:05:19 -07:00
|
|
|
parseChain(): AST {
|
2016-11-12 14:08:58 +01:00
|
|
|
const exprs: AST[] = [];
|
2016-07-06 14:06:47 -07:00
|
|
|
const start = this.inputIndex;
|
2014-11-03 17:25:16 -08:00
|
|
|
while (this.index < this.tokens.length) {
|
2016-11-12 14:08:58 +01:00
|
|
|
const expr = this.parsePipe();
|
2015-06-17 11:17:21 -07:00
|
|
|
exprs.push(expr);
|
2014-11-04 10:19:37 -08:00
|
|
|
|
2020-03-05 15:05:30 -08:00
|
|
|
if (this.consumeOptionalCharacter(chars.$SEMICOLON)) {
|
2015-05-01 14:05:19 -07:00
|
|
|
if (!this.parseAction) {
|
2016-06-08 16:38:52 -07:00
|
|
|
this.error('Binding expression cannot contain chained expression');
|
2014-11-04 15:51:56 -08:00
|
|
|
}
|
2020-03-05 15:05:30 -08:00
|
|
|
while (this.consumeOptionalCharacter(chars.$SEMICOLON)) {
|
2015-05-01 14:05:19 -07:00
|
|
|
} // 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
|
|
|
}
|
2019-07-29 13:23:29 -07:00
|
|
|
if (exprs.length == 0) return new EmptyExpr(this.span(start), this.sourceSpan(start));
|
2014-11-25 18:38:28 -08:00
|
|
|
if (exprs.length == 1) return exprs[0];
|
2019-07-29 13:23:29 -07:00
|
|
|
return new Chain(this.span(start), this.sourceSpan(start), exprs);
|
2014-11-03 17:25:16 -08:00
|
|
|
}
|
|
|
|
|
2015-06-26 11:10:52 -07:00
|
|
|
parsePipe(): AST {
|
2016-11-12 14:08:58 +01:00
|
|
|
let result = this.parseExpression();
|
2020-03-09 20:42:28 -07:00
|
|
|
if (this.consumeOptionalOperator('|')) {
|
2015-06-04 19:06:09 +02:00
|
|
|
if (this.parseAction) {
|
2016-06-08 16:38:52 -07:00
|
|
|
this.error('Cannot have a pipe in an action expression');
|
2015-06-04 19:06:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
2019-10-28 15:29:03 -07:00
|
|
|
const nameStart = this.inputIndex;
|
2017-07-05 10:20:02 -07:00
|
|
|
const name = this.expectIdentifierOrKeyword();
|
2019-12-15 14:28:51 +01:00
|
|
|
const nameSpan = this.sourceSpan(nameStart);
|
2016-11-12 14:08:58 +01:00
|
|
|
const args: AST[] = [];
|
2020-03-05 15:05:30 -08:00
|
|
|
while (this.consumeOptionalCharacter(chars.$COLON)) {
|
2015-10-13 18:55:46 -07:00
|
|
|
args.push(this.parseExpression());
|
2015-06-04 19:06:09 +02:00
|
|
|
}
|
2019-07-29 13:23:29 -07:00
|
|
|
const {start} = result.span;
|
2019-10-28 15:29:03 -07:00
|
|
|
result =
|
|
|
|
new BindingPipe(this.span(start), this.sourceSpan(start), result, name, args, nameSpan);
|
2020-03-09 20:42:28 -07:00
|
|
|
} while (this.consumeOptionalOperator('|'));
|
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
|
|
|
}
|
|
|
|
|
2020-04-08 10:14:18 -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 {
|
2016-07-06 14:06:47 -07:00
|
|
|
const start = this.inputIndex;
|
|
|
|
const result = this.parseLogicalOr();
|
2014-11-03 17:25:16 -08:00
|
|
|
|
2020-03-09 20:42:28 -07:00
|
|
|
if (this.consumeOptionalOperator('?')) {
|
2016-07-06 14:06:47 -07:00
|
|
|
const yes = this.parsePipe();
|
|
|
|
let no: AST;
|
2020-03-05 15:05:30 -08:00
|
|
|
if (!this.consumeOptionalCharacter(chars.$COLON)) {
|
2016-11-12 14:08:58 +01:00
|
|
|
const end = this.inputIndex;
|
|
|
|
const expression = this.input.substring(start, end);
|
2014-11-03 17:25:16 -08:00
|
|
|
this.error(`Conditional expression ${expression} requires all 3 expressions`);
|
2019-07-29 13:23:29 -07:00
|
|
|
no = new EmptyExpr(this.span(start), this.sourceSpan(start));
|
2016-07-06 14:06:47 -07:00
|
|
|
} else {
|
|
|
|
no = this.parsePipe();
|
2014-11-03 17:25:16 -08:00
|
|
|
}
|
2019-07-29 13:23:29 -07:00
|
|
|
return new Conditional(this.span(start), this.sourceSpan(start), result, yes, no);
|
2014-11-03 17:25:16 -08:00
|
|
|
} else {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-26 11:10:52 -07:00
|
|
|
parseLogicalOr(): AST {
|
2014-10-30 23:47:22 -07:00
|
|
|
// '||'
|
2016-07-06 14:06:47 -07:00
|
|
|
let result = this.parseLogicalAnd();
|
2020-03-09 20:42:28 -07:00
|
|
|
while (this.consumeOptionalOperator('||')) {
|
2016-07-06 14:06:47 -07:00
|
|
|
const right = this.parseLogicalAnd();
|
2019-07-29 13:23:29 -07:00
|
|
|
const {start} = result.span;
|
|
|
|
result = new Binary(this.span(start), this.sourceSpan(start), '||', result, right);
|
2014-10-30 23:47:22 -07:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2015-06-26 11:10:52 -07:00
|
|
|
parseLogicalAnd(): AST {
|
2014-10-30 23:47:22 -07:00
|
|
|
// '&&'
|
2016-07-06 14:06:47 -07:00
|
|
|
let result = this.parseEquality();
|
2020-03-09 20:42:28 -07:00
|
|
|
while (this.consumeOptionalOperator('&&')) {
|
2016-07-06 14:06:47 -07:00
|
|
|
const right = this.parseEquality();
|
2019-07-29 13:23:29 -07:00
|
|
|
const {start} = result.span;
|
|
|
|
result = new Binary(this.span(start), this.sourceSpan(start), '&&', result, right);
|
2014-10-30 23:47:22 -07:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2015-06-26 11:10:52 -07:00
|
|
|
parseEquality(): AST {
|
2015-04-22 11:45:33 +02:00
|
|
|
// '==','!=','===','!=='
|
2016-07-06 14:06:47 -07:00
|
|
|
let result = this.parseRelational();
|
|
|
|
while (this.next.type == TokenType.Operator) {
|
2016-11-12 14:08:58 +01:00
|
|
|
const operator = this.next.strValue;
|
2016-07-06 14:06:47 -07:00
|
|
|
switch (operator) {
|
|
|
|
case '==':
|
|
|
|
case '===':
|
|
|
|
case '!=':
|
|
|
|
case '!==':
|
|
|
|
this.advance();
|
|
|
|
const right = this.parseRelational();
|
2019-07-29 13:23:29 -07:00
|
|
|
const {start} = result.span;
|
|
|
|
result = new Binary(this.span(start), this.sourceSpan(start), operator, result, right);
|
2016-07-06 14:06:47 -07:00
|
|
|
continue;
|
2014-10-30 23:47:22 -07:00
|
|
|
}
|
2016-07-06 14:06:47 -07:00
|
|
|
break;
|
2014-10-30 23:47:22 -07:00
|
|
|
}
|
2016-07-06 14:06:47 -07:00
|
|
|
return result;
|
2014-10-30 23:47:22 -07:00
|
|
|
}
|
|
|
|
|
2015-06-26 11:10:52 -07:00
|
|
|
parseRelational(): AST {
|
2014-10-30 23:47:22 -07:00
|
|
|
// '<', '>', '<=', '>='
|
2016-07-06 14:06:47 -07:00
|
|
|
let result = this.parseAdditive();
|
|
|
|
while (this.next.type == TokenType.Operator) {
|
2016-11-12 14:08:58 +01:00
|
|
|
const operator = this.next.strValue;
|
2016-07-06 14:06:47 -07:00
|
|
|
switch (operator) {
|
|
|
|
case '<':
|
|
|
|
case '>':
|
|
|
|
case '<=':
|
|
|
|
case '>=':
|
|
|
|
this.advance();
|
|
|
|
const right = this.parseAdditive();
|
2019-07-29 13:23:29 -07:00
|
|
|
const {start} = result.span;
|
|
|
|
result = new Binary(this.span(start), this.sourceSpan(start), operator, result, right);
|
2016-07-06 14:06:47 -07:00
|
|
|
continue;
|
2014-10-30 23:47:22 -07:00
|
|
|
}
|
2016-07-06 14:06:47 -07:00
|
|
|
break;
|
2014-10-30 23:47:22 -07:00
|
|
|
}
|
2016-07-06 14:06:47 -07:00
|
|
|
return result;
|
2014-10-30 23:47:22 -07:00
|
|
|
}
|
|
|
|
|
2015-06-26 11:10:52 -07:00
|
|
|
parseAdditive(): AST {
|
2014-10-30 23:47:22 -07:00
|
|
|
// '+', '-'
|
2016-07-06 14:06:47 -07:00
|
|
|
let result = this.parseMultiplicative();
|
|
|
|
while (this.next.type == TokenType.Operator) {
|
|
|
|
const operator = this.next.strValue;
|
|
|
|
switch (operator) {
|
|
|
|
case '+':
|
|
|
|
case '-':
|
|
|
|
this.advance();
|
|
|
|
let right = this.parseMultiplicative();
|
2019-07-29 13:23:29 -07:00
|
|
|
const {start} = result.span;
|
|
|
|
result = new Binary(this.span(start), this.sourceSpan(start), operator, result, right);
|
2016-07-06 14:06:47 -07:00
|
|
|
continue;
|
2014-10-30 23:47:22 -07:00
|
|
|
}
|
2016-07-06 14:06:47 -07:00
|
|
|
break;
|
2014-10-30 23:47:22 -07:00
|
|
|
}
|
2016-07-06 14:06:47 -07:00
|
|
|
return result;
|
2014-10-30 23:47:22 -07:00
|
|
|
}
|
|
|
|
|
2015-06-26 11:10:52 -07:00
|
|
|
parseMultiplicative(): AST {
|
2014-11-05 10:00:19 -08:00
|
|
|
// '*', '%', '/'
|
2016-07-06 14:06:47 -07:00
|
|
|
let result = this.parsePrefix();
|
|
|
|
while (this.next.type == TokenType.Operator) {
|
|
|
|
const operator = this.next.strValue;
|
|
|
|
switch (operator) {
|
|
|
|
case '*':
|
|
|
|
case '%':
|
|
|
|
case '/':
|
|
|
|
this.advance();
|
|
|
|
let right = this.parsePrefix();
|
2019-07-29 13:23:29 -07:00
|
|
|
const {start} = result.span;
|
|
|
|
result = new Binary(this.span(start), this.sourceSpan(start), operator, result, right);
|
2016-07-06 14:06:47 -07:00
|
|
|
continue;
|
2014-10-30 23:47:22 -07:00
|
|
|
}
|
2016-07-06 14:06:47 -07:00
|
|
|
break;
|
2014-10-30 23:47:22 -07:00
|
|
|
}
|
2016-07-06 14:06:47 -07:00
|
|
|
return result;
|
2014-10-30 23:47:22 -07:00
|
|
|
}
|
|
|
|
|
2015-06-26 11:10:52 -07:00
|
|
|
parsePrefix(): AST {
|
2016-07-06 14:06:47 -07:00
|
|
|
if (this.next.type == TokenType.Operator) {
|
|
|
|
const start = this.inputIndex;
|
|
|
|
const operator = this.next.strValue;
|
2019-07-29 13:23:29 -07:00
|
|
|
const literalSpan = new ParseSpan(start, start);
|
|
|
|
const literalSourceSpan = literalSpan.toAbsolute(this.absoluteOffset);
|
2016-07-13 10:28:11 -07:00
|
|
|
let result: AST;
|
2016-07-06 14:06:47 -07:00
|
|
|
switch (operator) {
|
|
|
|
case '+':
|
|
|
|
this.advance();
|
2018-02-12 00:02:24 +08:00
|
|
|
result = this.parsePrefix();
|
|
|
|
return new Binary(
|
2019-07-29 13:23:29 -07:00
|
|
|
this.span(start), this.sourceSpan(start), '-', result,
|
|
|
|
new LiteralPrimitive(literalSpan, literalSourceSpan, 0));
|
2016-07-06 14:06:47 -07:00
|
|
|
case '-':
|
|
|
|
this.advance();
|
2016-07-13 10:28:11 -07:00
|
|
|
result = this.parsePrefix();
|
2016-07-06 14:06:47 -07:00
|
|
|
return new Binary(
|
2019-07-29 13:23:29 -07:00
|
|
|
this.span(start), this.sourceSpan(start), operator,
|
|
|
|
new LiteralPrimitive(literalSpan, literalSourceSpan, 0), result);
|
2016-07-06 14:06:47 -07:00
|
|
|
case '!':
|
|
|
|
this.advance();
|
2016-07-13 10:28:11 -07:00
|
|
|
result = this.parsePrefix();
|
2019-07-29 13:23:29 -07:00
|
|
|
return new PrefixNot(this.span(start), this.sourceSpan(start), result);
|
2016-07-06 14:06:47 -07:00
|
|
|
}
|
2014-10-30 23:47:22 -07:00
|
|
|
}
|
2016-07-06 14:06:47 -07:00
|
|
|
return this.parseCallChain();
|
2014-10-30 23:47:22 -07:00
|
|
|
}
|
|
|
|
|
2015-05-01 14:05:19 -07:00
|
|
|
parseCallChain(): AST {
|
2016-07-06 14:06:47 -07:00
|
|
|
let result = this.parsePrimary();
|
2019-07-29 13:23:29 -07:00
|
|
|
const resultStart = result.span.start;
|
2014-11-05 10:00:19 -08:00
|
|
|
while (true) {
|
2020-03-05 15:05:30 -08:00
|
|
|
if (this.consumeOptionalCharacter(chars.$PERIOD)) {
|
2015-05-26 10:19:47 +02:00
|
|
|
result = this.parseAccessMemberOrMethodCall(result, false);
|
|
|
|
|
2020-03-09 20:42:28 -07:00
|
|
|
} else if (this.consumeOptionalOperator('?.')) {
|
2015-05-26 10:19:47 +02:00
|
|
|
result = this.parseAccessMemberOrMethodCall(result, true);
|
2014-11-05 13:48:36 -08:00
|
|
|
|
2020-03-05 15:05:30 -08:00
|
|
|
} else if (this.consumeOptionalCharacter(chars.$LBRACKET)) {
|
2016-07-06 14:06:47 -07:00
|
|
|
this.rbracketsExpected++;
|
|
|
|
const key = this.parsePipe();
|
|
|
|
this.rbracketsExpected--;
|
2016-06-21 11:10:25 -07:00
|
|
|
this.expectCharacter(chars.$RBRACKET);
|
2020-03-09 20:42:28 -07:00
|
|
|
if (this.consumeOptionalOperator('=')) {
|
2016-07-06 14:06:47 -07:00
|
|
|
const value = this.parseConditional();
|
2019-07-29 13:23:29 -07:00
|
|
|
result = new KeyedWrite(
|
|
|
|
this.span(resultStart), this.sourceSpan(resultStart), result, key, value);
|
2015-08-12 16:26:21 -07:00
|
|
|
} else {
|
2019-07-29 13:23:29 -07:00
|
|
|
result = new KeyedRead(this.span(resultStart), this.sourceSpan(resultStart), result, key);
|
2015-08-12 16:26:21 -07:00
|
|
|
}
|
2014-11-05 13:48:36 -08:00
|
|
|
|
2020-03-05 15:05:30 -08:00
|
|
|
} else if (this.consumeOptionalCharacter(chars.$LPAREN)) {
|
2016-07-06 14:06:47 -07:00
|
|
|
this.rparensExpected++;
|
|
|
|
const args = this.parseCallArguments();
|
|
|
|
this.rparensExpected--;
|
2016-06-21 11:10:25 -07:00
|
|
|
this.expectCharacter(chars.$RPAREN);
|
2019-07-29 13:23:29 -07:00
|
|
|
result =
|
|
|
|
new FunctionCall(this.span(resultStart), this.sourceSpan(resultStart), result, args);
|
2014-11-05 15:38:44 -08:00
|
|
|
|
2020-03-09 20:42:28 -07:00
|
|
|
} else if (this.consumeOptionalOperator('!')) {
|
2019-07-29 13:23:29 -07:00
|
|
|
result = new NonNullAssert(this.span(resultStart), this.sourceSpan(resultStart), result);
|
2017-05-11 10:15:54 -07: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 {
|
2016-07-06 14:06:47 -07:00
|
|
|
const start = this.inputIndex;
|
2020-03-05 15:05:30 -08:00
|
|
|
if (this.consumeOptionalCharacter(chars.$LPAREN)) {
|
2016-07-06 14:06:47 -07:00
|
|
|
this.rparensExpected++;
|
|
|
|
const result = this.parsePipe();
|
|
|
|
this.rparensExpected--;
|
2016-06-21 11:10:25 -07:00
|
|
|
this.expectCharacter(chars.$RPAREN);
|
2015-06-26 11:10:52 -07:00
|
|
|
return result;
|
2016-08-04 17:04:30 -07:00
|
|
|
|
|
|
|
} else if (this.next.isKeywordNull()) {
|
2014-10-30 23:47:22 -07:00
|
|
|
this.advance();
|
2019-07-29 13:23:29 -07:00
|
|
|
return new LiteralPrimitive(this.span(start), this.sourceSpan(start), null);
|
2014-11-05 10:00:19 -08:00
|
|
|
|
2016-08-04 17:04:30 -07:00
|
|
|
} else if (this.next.isKeywordUndefined()) {
|
|
|
|
this.advance();
|
2019-07-29 13:23:29 -07:00
|
|
|
return new LiteralPrimitive(this.span(start), this.sourceSpan(start), void 0);
|
2016-08-04 17:04:30 -07:00
|
|
|
|
2014-10-30 23:47:22 -07:00
|
|
|
} else if (this.next.isKeywordTrue()) {
|
|
|
|
this.advance();
|
2019-07-29 13:23:29 -07:00
|
|
|
return new LiteralPrimitive(this.span(start), this.sourceSpan(start), true);
|
2014-11-05 10:00:19 -08:00
|
|
|
|
2014-10-30 23:47:22 -07:00
|
|
|
} else if (this.next.isKeywordFalse()) {
|
|
|
|
this.advance();
|
2019-07-29 13:23:29 -07:00
|
|
|
return new LiteralPrimitive(this.span(start), this.sourceSpan(start), false);
|
2014-11-05 10:00:19 -08:00
|
|
|
|
2016-08-04 10:14:44 -07:00
|
|
|
} else if (this.next.isKeywordThis()) {
|
|
|
|
this.advance();
|
2019-07-29 13:23:29 -07:00
|
|
|
return new ImplicitReceiver(this.span(start), this.sourceSpan(start));
|
2016-08-04 10:14:44 -07:00
|
|
|
|
2020-03-05 15:05:30 -08:00
|
|
|
} else if (this.consumeOptionalCharacter(chars.$LBRACKET)) {
|
2016-07-06 14:06:47 -07:00
|
|
|
this.rbracketsExpected++;
|
|
|
|
const elements = this.parseExpressionList(chars.$RBRACKET);
|
|
|
|
this.rbracketsExpected--;
|
2016-06-21 11:10:25 -07:00
|
|
|
this.expectCharacter(chars.$RBRACKET);
|
2019-07-29 13:23:29 -07:00
|
|
|
return new LiteralArray(this.span(start), this.sourceSpan(start), elements);
|
2014-11-05 13:48:36 -08:00
|
|
|
|
2016-06-21 11:10:25 -07:00
|
|
|
} else if (this.next.isCharacter(chars.$LBRACE)) {
|
2014-11-05 13:48:36 -08:00
|
|
|
return this.parseLiteralMap();
|
|
|
|
|
2014-10-30 23:47:22 -07:00
|
|
|
} else if (this.next.isIdentifier()) {
|
2019-07-29 13:23:29 -07:00
|
|
|
return this.parseAccessMemberOrMethodCall(
|
|
|
|
new ImplicitReceiver(this.span(start), this.sourceSpan(start)), false);
|
2014-11-05 10:00:19 -08:00
|
|
|
|
2014-10-30 23:47:22 -07:00
|
|
|
} else if (this.next.isNumber()) {
|
2016-07-06 14:06:47 -07:00
|
|
|
const value = this.next.toNumber();
|
2014-10-30 23:47:22 -07:00
|
|
|
this.advance();
|
2019-07-29 13:23:29 -07:00
|
|
|
return new LiteralPrimitive(this.span(start), this.sourceSpan(start), value);
|
2014-11-05 10:00:19 -08:00
|
|
|
|
2014-10-30 23:47:22 -07:00
|
|
|
} else if (this.next.isString()) {
|
2016-07-06 14:06:47 -07:00
|
|
|
const literalValue = this.next.toString();
|
2014-10-30 23:47:22 -07:00
|
|
|
this.advance();
|
2019-07-29 13:23:29 -07:00
|
|
|
return new LiteralPrimitive(this.span(start), this.sourceSpan(start), 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}`);
|
2019-07-29 13:23:29 -07:00
|
|
|
return new EmptyExpr(this.span(start), this.sourceSpan(start));
|
2014-11-05 10:00:19 -08:00
|
|
|
} else {
|
|
|
|
this.error(`Unexpected token ${this.next}`);
|
2019-07-29 13:23:29 -07:00
|
|
|
return new EmptyExpr(this.span(start), this.sourceSpan(start));
|
2014-11-03 17:25:16 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-11 21:23:37 -07:00
|
|
|
parseExpressionList(terminator: number): AST[] {
|
2016-11-12 14:08:58 +01:00
|
|
|
const result: AST[] = [];
|
2014-11-05 13:48:36 -08:00
|
|
|
if (!this.next.isCharacter(terminator)) {
|
|
|
|
do {
|
2015-06-17 11:17:21 -07:00
|
|
|
result.push(this.parsePipe());
|
2020-03-05 15:05:30 -08:00
|
|
|
} while (this.consumeOptionalCharacter(chars.$COMMA));
|
2014-11-05 13:48:36 -08:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2015-06-26 11:10:52 -07:00
|
|
|
parseLiteralMap(): LiteralMap {
|
2017-07-05 10:54:05 -07:00
|
|
|
const keys: LiteralMapKey[] = [];
|
2016-11-12 14:08:58 +01:00
|
|
|
const values: AST[] = [];
|
2016-07-06 14:06:47 -07:00
|
|
|
const start = this.inputIndex;
|
2016-06-21 11:10:25 -07:00
|
|
|
this.expectCharacter(chars.$LBRACE);
|
2020-03-05 15:05:30 -08:00
|
|
|
if (!this.consumeOptionalCharacter(chars.$RBRACE)) {
|
2016-07-06 14:06:47 -07:00
|
|
|
this.rbracesExpected++;
|
2014-11-05 13:48:36 -08:00
|
|
|
do {
|
2017-07-05 10:54:05 -07:00
|
|
|
const quoted = this.next.isString();
|
2017-07-05 10:20:02 -07:00
|
|
|
const key = this.expectIdentifierOrKeywordOrString();
|
2017-07-05 10:54:05 -07:00
|
|
|
keys.push({key, quoted});
|
2016-06-21 11:10:25 -07:00
|
|
|
this.expectCharacter(chars.$COLON);
|
2015-06-17 11:17:21 -07:00
|
|
|
values.push(this.parsePipe());
|
2020-03-05 15:05:30 -08:00
|
|
|
} while (this.consumeOptionalCharacter(chars.$COMMA));
|
2016-07-06 14:06:47 -07:00
|
|
|
this.rbracesExpected--;
|
2016-06-21 11:10:25 -07:00
|
|
|
this.expectCharacter(chars.$RBRACE);
|
2014-11-05 13:48:36 -08:00
|
|
|
}
|
2019-07-29 13:23:29 -07:00
|
|
|
return new LiteralMap(this.span(start), this.sourceSpan(start), keys, values);
|
2014-11-05 13:48:36 -08:00
|
|
|
}
|
|
|
|
|
2015-07-07 20:03:00 -07:00
|
|
|
parseAccessMemberOrMethodCall(receiver: AST, isSafe: boolean = false): AST {
|
2016-07-06 14:06:47 -07:00
|
|
|
const start = receiver.span.start;
|
2020-04-27 18:54:30 -07:00
|
|
|
const nameStart = this.inputIndex;
|
2017-07-05 10:20:02 -07:00
|
|
|
const id = this.expectIdentifierOrKeyword();
|
2020-04-27 18:54:30 -07:00
|
|
|
const nameSpan = this.sourceSpan(nameStart);
|
2014-11-05 15:38:44 -08:00
|
|
|
|
2020-03-05 15:05:30 -08:00
|
|
|
if (this.consumeOptionalCharacter(chars.$LPAREN)) {
|
2016-07-06 14:06:47 -07:00
|
|
|
this.rparensExpected++;
|
|
|
|
const args = this.parseCallArguments();
|
2016-06-21 11:10:25 -07:00
|
|
|
this.expectCharacter(chars.$RPAREN);
|
2016-07-06 14:06:47 -07:00
|
|
|
this.rparensExpected--;
|
2016-11-12 14:08:58 +01:00
|
|
|
const span = this.span(start);
|
2019-07-29 13:23:29 -07:00
|
|
|
const sourceSpan = this.sourceSpan(start);
|
2020-04-27 18:54:30 -07:00
|
|
|
return isSafe ? new SafeMethodCall(span, sourceSpan, nameSpan, receiver, id, args) :
|
|
|
|
new MethodCall(span, sourceSpan, nameSpan, receiver, id, args);
|
2014-11-05 15:38:44 -08:00
|
|
|
|
|
|
|
} else {
|
2015-08-12 16:26:21 -07:00
|
|
|
if (isSafe) {
|
2020-03-09 20:42:28 -07:00
|
|
|
if (this.consumeOptionalOperator('=')) {
|
2016-06-08 16:38:52 -07:00
|
|
|
this.error('The \'?.\' operator cannot be used in the assignment');
|
2019-07-29 13:23:29 -07:00
|
|
|
return new EmptyExpr(this.span(start), this.sourceSpan(start));
|
2015-08-12 16:26:21 -07:00
|
|
|
} else {
|
2020-04-27 18:54:30 -07:00
|
|
|
return new SafePropertyRead(
|
|
|
|
this.span(start), this.sourceSpan(start), nameSpan, receiver, id);
|
2015-08-12 16:26:21 -07:00
|
|
|
}
|
|
|
|
} else {
|
2020-03-09 20:42:28 -07:00
|
|
|
if (this.consumeOptionalOperator('=')) {
|
2015-08-12 16:26:21 -07:00
|
|
|
if (!this.parseAction) {
|
2016-06-08 16:38:52 -07:00
|
|
|
this.error('Bindings cannot contain assignments');
|
2019-07-29 13:23:29 -07:00
|
|
|
return new EmptyExpr(this.span(start), this.sourceSpan(start));
|
2015-08-12 16:26:21 -07:00
|
|
|
}
|
|
|
|
|
2016-11-12 14:08:58 +01:00
|
|
|
const value = this.parseConditional();
|
2020-04-27 18:54:30 -07:00
|
|
|
return new PropertyWrite(
|
|
|
|
this.span(start), this.sourceSpan(start), nameSpan, receiver, id, value);
|
2015-08-12 16:26:21 -07:00
|
|
|
} else {
|
2020-04-27 18:54:30 -07:00
|
|
|
return new PropertyRead(this.span(start), this.sourceSpan(start), nameSpan, receiver, id);
|
2015-08-12 16:26:21 -07:00
|
|
|
}
|
|
|
|
}
|
2014-11-05 15:38:44 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-26 11:10:52 -07:00
|
|
|
parseCallArguments(): BindingPipe[] {
|
2016-06-21 11:10:25 -07:00
|
|
|
if (this.next.isCharacter(chars.$RPAREN)) return [];
|
2016-11-12 14:08:58 +01:00
|
|
|
const positionals: AST[] = [];
|
2014-11-05 15:38:44 -08:00
|
|
|
do {
|
2015-06-17 11:17:21 -07:00
|
|
|
positionals.push(this.parsePipe());
|
2020-03-05 15:05:30 -08:00
|
|
|
} while (this.consumeOptionalCharacter(chars.$COMMA));
|
2016-06-11 21:23:37 -07:00
|
|
|
return positionals as BindingPipe[];
|
2014-10-28 12:22:38 -04:00
|
|
|
}
|
2014-11-03 17:25:16 -08:00
|
|
|
|
2014-12-01 16:05:44 -08:00
|
|
|
/**
|
2020-03-05 15:38:25 -08:00
|
|
|
* Parses an identifier, a keyword, a string with an optional `-` in between,
|
|
|
|
* and returns the string along with its absolute source span.
|
2014-12-01 16:05:44 -08:00
|
|
|
*/
|
2020-03-05 15:38:25 -08:00
|
|
|
expectTemplateBindingKey(): TemplateBindingIdentifier {
|
2016-07-06 14:06:47 -07:00
|
|
|
let result = '';
|
|
|
|
let operatorFound = false;
|
2020-03-05 15:38:25 -08:00
|
|
|
const start = this.currentAbsoluteOffset;
|
2014-12-01 16:05:44 -08:00
|
|
|
do {
|
|
|
|
result += this.expectIdentifierOrKeywordOrString();
|
2020-03-09 20:42:28 -07:00
|
|
|
operatorFound = this.consumeOptionalOperator('-');
|
2014-12-01 16:05:44 -08:00
|
|
|
if (operatorFound) {
|
|
|
|
result += '-';
|
|
|
|
}
|
|
|
|
} while (operatorFound);
|
2020-03-02 16:38:55 -08:00
|
|
|
return {
|
2020-03-05 15:38:25 -08:00
|
|
|
source: result,
|
|
|
|
span: new AbsoluteSourceSpan(start, start + result.length),
|
2020-03-02 16:38:55 -08:00
|
|
|
};
|
2014-12-01 16:05:44 -08:00
|
|
|
}
|
|
|
|
|
2020-03-02 16:38:55 -08:00
|
|
|
/**
|
|
|
|
* Parse microsyntax template expression and return a list of bindings or
|
|
|
|
* parsing errors in case the given expression is invalid.
|
|
|
|
*
|
|
|
|
* For example,
|
|
|
|
* ```
|
|
|
|
* <div *ngFor="let item of items; index as i; trackBy: func">
|
|
|
|
* ```
|
|
|
|
* contains five bindings:
|
|
|
|
* 1. ngFor -> null
|
|
|
|
* 2. item -> NgForOfContext.$implicit
|
|
|
|
* 3. ngForOf -> items
|
|
|
|
* 4. i -> NgForOfContext.index
|
|
|
|
* 5. ngForTrackBy -> func
|
|
|
|
*
|
|
|
|
* For a full description of the microsyntax grammar, see
|
|
|
|
* https://gist.github.com/mhevery/d3530294cff2e4a1b3fe15ff75d08855
|
|
|
|
*
|
2020-03-05 15:38:25 -08:00
|
|
|
* @param templateKey name of the microsyntax directive, like ngIf, ngFor,
|
|
|
|
* without the *, along with its absolute span.
|
2020-03-02 16:38:55 -08:00
|
|
|
*/
|
2020-03-05 15:38:25 -08:00
|
|
|
parseTemplateBindings(templateKey: TemplateBindingIdentifier): TemplateBindingParseResult {
|
2016-11-12 14:08:58 +01:00
|
|
|
const bindings: TemplateBinding[] = [];
|
2018-04-19 17:23:27 -07:00
|
|
|
|
2020-03-02 16:38:55 -08:00
|
|
|
// The first binding is for the template key itself
|
|
|
|
// In *ngFor="let item of items", key = "ngFor", value = null
|
|
|
|
// In *ngIf="cond | pipe", key = "ngIf", value = "cond | pipe"
|
2020-03-05 15:38:25 -08:00
|
|
|
bindings.push(...this.parseDirectiveKeywordBindings(templateKey));
|
2020-03-02 16:38:55 -08:00
|
|
|
|
|
|
|
while (this.index < this.tokens.length) {
|
|
|
|
// If it starts with 'let', then this must be variable declaration
|
|
|
|
const letBinding = this.parseLetBinding();
|
|
|
|
if (letBinding) {
|
|
|
|
bindings.push(letBinding);
|
|
|
|
} else {
|
|
|
|
// Two possible cases here, either `value "as" key` or
|
|
|
|
// "directive-keyword expression". We don't know which case, but both
|
|
|
|
// "value" and "directive-keyword" are template binding key, so consume
|
|
|
|
// the key first.
|
2020-03-05 15:38:25 -08:00
|
|
|
const key = this.expectTemplateBindingKey();
|
2020-03-02 16:38:55 -08:00
|
|
|
// Peek at the next token, if it is "as" then this must be variable
|
|
|
|
// declaration.
|
2020-03-05 15:38:25 -08:00
|
|
|
const binding = this.parseAsBinding(key);
|
2020-03-02 16:38:55 -08:00
|
|
|
if (binding) {
|
|
|
|
bindings.push(binding);
|
2015-05-21 12:17:46 -07:00
|
|
|
} else {
|
2020-03-02 16:38:55 -08:00
|
|
|
// Otherwise the key must be a directive keyword, like "of". Transform
|
|
|
|
// the key to actual key. Eg. of -> ngForOf, trackBy -> ngForTrackBy
|
2020-03-05 15:38:25 -08:00
|
|
|
key.source = templateKey.source + key.source[0].toUpperCase() + key.source.substring(1);
|
|
|
|
bindings.push(...this.parseDirectiveKeywordBindings(key));
|
2014-12-01 16:05:44 -08:00
|
|
|
}
|
2014-11-18 16:38:36 -08:00
|
|
|
}
|
2020-03-02 16:38:55 -08:00
|
|
|
this.consumeStatementTerminator();
|
|
|
|
}
|
2018-04-19 17:23:27 -07:00
|
|
|
|
2020-03-02 16:38:55 -08:00
|
|
|
return new TemplateBindingParseResult(bindings, [] /* warnings */, this.errors);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse a directive keyword, followed by a mandatory expression.
|
|
|
|
* For example, "of items", "trackBy: func".
|
|
|
|
* The bindings are: ngForOf -> items, ngForTrackBy -> func
|
|
|
|
* There could be an optional "as" binding that follows the expression.
|
|
|
|
* For example,
|
|
|
|
* ```
|
2020-03-05 15:38:25 -08:00
|
|
|
* *ngFor="let item of items | slice:0:1 as collection".
|
|
|
|
* ^^ ^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^
|
|
|
|
* keyword bound target optional 'as' binding
|
2020-03-02 16:38:55 -08:00
|
|
|
* ```
|
|
|
|
*
|
2020-03-05 15:38:25 -08:00
|
|
|
* @param key binding key, for example, ngFor, ngIf, ngForOf, along with its
|
|
|
|
* absolute span.
|
2020-03-02 16:38:55 -08:00
|
|
|
*/
|
2020-03-05 15:38:25 -08:00
|
|
|
private parseDirectiveKeywordBindings(key: TemplateBindingIdentifier): TemplateBinding[] {
|
2020-03-02 16:38:55 -08:00
|
|
|
const bindings: TemplateBinding[] = [];
|
2020-03-05 15:05:30 -08:00
|
|
|
this.consumeOptionalCharacter(chars.$COLON); // trackBy: trackByFunction
|
2020-03-05 15:38:25 -08:00
|
|
|
const value = this.getDirectiveBoundTarget();
|
|
|
|
let spanEnd = this.currentAbsoluteOffset;
|
2020-03-02 16:38:55 -08:00
|
|
|
// The binding could optionally be followed by "as". For example,
|
|
|
|
// *ngIf="cond | pipe as x". In this case, the key in the "as" binding
|
|
|
|
// is "x" and the value is the template key itself ("ngIf"). Note that the
|
|
|
|
// 'key' in the current context now becomes the "value" in the next binding.
|
2020-03-05 15:38:25 -08:00
|
|
|
const asBinding = this.parseAsBinding(key);
|
|
|
|
if (!asBinding) {
|
|
|
|
this.consumeStatementTerminator();
|
|
|
|
spanEnd = this.currentAbsoluteOffset;
|
|
|
|
}
|
|
|
|
const sourceSpan = new AbsoluteSourceSpan(key.span.start, spanEnd);
|
|
|
|
bindings.push(new ExpressionBinding(sourceSpan, key, value));
|
2020-03-02 16:38:55 -08:00
|
|
|
if (asBinding) {
|
|
|
|
bindings.push(asBinding);
|
|
|
|
}
|
|
|
|
return bindings;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the expression AST for the bound target of a directive keyword
|
|
|
|
* binding. For example,
|
|
|
|
* ```
|
2020-03-05 15:38:25 -08:00
|
|
|
* *ngIf="condition | pipe"
|
|
|
|
* ^^^^^^^^^^^^^^^^ bound target for "ngIf"
|
|
|
|
* *ngFor="let item of items"
|
|
|
|
* ^^^^^ bound target for "ngForOf"
|
2020-03-02 16:38:55 -08:00
|
|
|
* ```
|
|
|
|
*/
|
|
|
|
private getDirectiveBoundTarget(): ASTWithSource|null {
|
|
|
|
if (this.next === EOF || this.peekKeywordAs() || this.peekKeywordLet()) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
const ast = this.parsePipe(); // example: "condition | async"
|
2019-12-18 19:30:56 -06:00
|
|
|
const {start, end} = ast.span;
|
2020-03-02 16:38:55 -08:00
|
|
|
const value = this.input.substring(start, end);
|
|
|
|
return new ASTWithSource(ast, value, this.location, this.absoluteOffset + start, this.errors);
|
|
|
|
}
|
2018-04-19 17:23:27 -07:00
|
|
|
|
2020-03-02 16:38:55 -08:00
|
|
|
/**
|
|
|
|
* Return the binding for a variable declared using `as`. Note that the order
|
|
|
|
* of the key-value pair in this declaration is reversed. For example,
|
|
|
|
* ```
|
2020-03-05 15:38:25 -08:00
|
|
|
* *ngFor="let item of items; index as i"
|
|
|
|
* ^^^^^ ^
|
|
|
|
* value key
|
2020-03-02 16:38:55 -08:00
|
|
|
* ```
|
|
|
|
*
|
2020-03-05 15:38:25 -08:00
|
|
|
* @param value name of the value in the declaration, "ngIf" in the example
|
|
|
|
* above, along with its absolute span.
|
2020-03-02 16:38:55 -08:00
|
|
|
*/
|
2020-03-05 15:38:25 -08:00
|
|
|
private parseAsBinding(value: TemplateBindingIdentifier): TemplateBinding|null {
|
2020-03-02 16:38:55 -08:00
|
|
|
if (!this.peekKeywordAs()) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
this.advance(); // consume the 'as' keyword
|
2020-03-05 15:38:25 -08:00
|
|
|
const key = this.expectTemplateBindingKey();
|
|
|
|
this.consumeStatementTerminator();
|
|
|
|
const sourceSpan = new AbsoluteSourceSpan(value.span.start, this.currentAbsoluteOffset);
|
|
|
|
return new VariableBinding(sourceSpan, key, value);
|
2020-03-02 16:38:55 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the binding for a variable declared using `let`. For example,
|
|
|
|
* ```
|
2020-03-05 15:38:25 -08:00
|
|
|
* *ngFor="let item of items; let i=index;"
|
|
|
|
* ^^^^^^^^ ^^^^^^^^^^^
|
2020-03-02 16:38:55 -08:00
|
|
|
* ```
|
|
|
|
* In the first binding, `item` is bound to `NgForOfContext.$implicit`.
|
|
|
|
* In the second binding, `i` is bound to `NgForOfContext.index`.
|
|
|
|
*/
|
|
|
|
private parseLetBinding(): TemplateBinding|null {
|
|
|
|
if (!this.peekKeywordLet()) {
|
|
|
|
return null;
|
|
|
|
}
|
2020-03-05 15:38:25 -08:00
|
|
|
const spanStart = this.currentAbsoluteOffset;
|
2020-03-02 16:38:55 -08:00
|
|
|
this.advance(); // consume the 'let' keyword
|
2020-03-05 15:38:25 -08:00
|
|
|
const key = this.expectTemplateBindingKey();
|
|
|
|
let value: TemplateBindingIdentifier|null = null;
|
2020-03-09 20:42:28 -07:00
|
|
|
if (this.consumeOptionalOperator('=')) {
|
2020-03-05 15:38:25 -08:00
|
|
|
value = this.expectTemplateBindingKey();
|
|
|
|
}
|
|
|
|
this.consumeStatementTerminator();
|
|
|
|
const sourceSpan = new AbsoluteSourceSpan(spanStart, this.currentAbsoluteOffset);
|
|
|
|
return new VariableBinding(sourceSpan, key, value);
|
2020-03-02 16:38:55 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Consume the optional statement terminator: semicolon or comma.
|
|
|
|
*/
|
|
|
|
private consumeStatementTerminator() {
|
2020-03-05 15:05:30 -08:00
|
|
|
this.consumeOptionalCharacter(chars.$SEMICOLON) || this.consumeOptionalCharacter(chars.$COMMA);
|
2014-11-18 16:38:36 -08:00
|
|
|
}
|
|
|
|
|
2017-03-24 09:59:58 -07:00
|
|
|
error(message: string, index: number|null = null) {
|
2016-07-06 14:06:47 -07:00
|
|
|
this.errors.push(new ParserError(message, this.input, this.locationText(index), this.location));
|
|
|
|
this.skip();
|
|
|
|
}
|
2014-11-03 17:25:16 -08:00
|
|
|
|
2017-03-24 09:59:58 -07:00
|
|
|
private locationText(index: number|null = null) {
|
2017-03-02 09:37:01 -08:00
|
|
|
if (index == null) index = this.index;
|
2016-07-06 14:06:47 -07:00
|
|
|
return (index < this.tokens.length) ? `at column ${this.tokens[index].index + 1} in` :
|
|
|
|
`at the end of the expression`;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Error recovery should skip tokens until it encounters a recovery point. skip() treats
|
|
|
|
// the end of input and a ';' as unconditionally a recovery point. It also treats ')',
|
|
|
|
// '}' and ']' as conditional recovery points if one of calling productions is expecting
|
|
|
|
// one of these symbols. This allows skip() to recover from errors such as '(a.) + 1' allowing
|
|
|
|
// more of the AST to be retained (it doesn't skip any tokens as the ')' is retained because
|
|
|
|
// of the '(' begins an '(' <expr> ')' production). The recovery points of grouping symbols
|
|
|
|
// must be conditional as they must be skipped if none of the calling productions are not
|
|
|
|
// expecting the closing token else we will never make progress in the case of an
|
2016-08-25 15:21:33 -07:00
|
|
|
// extraneous group closing symbol (such as a stray ')'). This is not the case for ';' because
|
2016-07-06 14:06:47 -07:00
|
|
|
// parseChain() is always the root production and it expects a ';'.
|
|
|
|
|
|
|
|
// If a production expects one of these token it increments the corresponding nesting count,
|
|
|
|
// and then decrements it just prior to checking if the token is in the input.
|
|
|
|
private skip() {
|
|
|
|
let n = this.next;
|
|
|
|
while (this.index < this.tokens.length && !n.isCharacter(chars.$SEMICOLON) &&
|
|
|
|
(this.rparensExpected <= 0 || !n.isCharacter(chars.$RPAREN)) &&
|
|
|
|
(this.rbracesExpected <= 0 || !n.isCharacter(chars.$RBRACE)) &&
|
|
|
|
(this.rbracketsExpected <= 0 || !n.isCharacter(chars.$RBRACKET))) {
|
|
|
|
if (this.next.isError()) {
|
2020-04-08 10:14:18 -07:00
|
|
|
this.errors.push(
|
|
|
|
new ParserError(this.next.toString()!, this.input, this.locationText(), this.location));
|
2016-07-06 14:06:47 -07:00
|
|
|
}
|
|
|
|
this.advance();
|
|
|
|
n = this.next;
|
|
|
|
}
|
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 {
|
2016-10-20 15:24:58 -07:00
|
|
|
errors: string[] = [];
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2016-01-06 14:13:44 -08:00
|
|
|
visitImplicitReceiver(ast: ImplicitReceiver, context: any) {}
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2016-10-20 15:24:58 -07:00
|
|
|
visitInterpolation(ast: Interpolation, context: any) {}
|
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-10-20 15:24:58 -07:00
|
|
|
visitPropertyWrite(ast: PropertyWrite, context: any) {}
|
2015-08-12 16:26:21 -07:00
|
|
|
|
2016-10-20 15:24:58 -07:00
|
|
|
visitSafePropertyRead(ast: SafePropertyRead, context: any) {}
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2016-10-20 15:24:58 -07:00
|
|
|
visitMethodCall(ast: MethodCall, context: any) {}
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2016-10-20 15:24:58 -07:00
|
|
|
visitSafeMethodCall(ast: SafeMethodCall, context: any) {}
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2016-10-20 15:24:58 -07:00
|
|
|
visitFunctionCall(ast: FunctionCall, context: any) {}
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2020-04-08 10:14:18 -07:00
|
|
|
visitLiteralArray(ast: LiteralArray, context: any) {
|
|
|
|
this.visitAll(ast.expressions);
|
|
|
|
}
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2020-04-08 10:14:18 -07:00
|
|
|
visitLiteralMap(ast: LiteralMap, context: any) {
|
|
|
|
this.visitAll(ast.values);
|
|
|
|
}
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2016-10-20 15:24:58 -07:00
|
|
|
visitBinary(ast: Binary, context: any) {}
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2016-10-20 15:24:58 -07:00
|
|
|
visitPrefixNot(ast: PrefixNot, context: any) {}
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2017-05-11 10:15:54 -07:00
|
|
|
visitNonNullAssert(ast: NonNullAssert, context: any) {}
|
|
|
|
|
2016-10-20 15:24:58 -07:00
|
|
|
visitConditional(ast: Conditional, context: any) {}
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2020-04-08 10:14:18 -07:00
|
|
|
visitPipe(ast: BindingPipe, context: any) {
|
|
|
|
this.errors.push('pipes');
|
|
|
|
}
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2016-10-20 15:24:58 -07:00
|
|
|
visitKeyedRead(ast: KeyedRead, context: any) {}
|
2015-08-12 16:26:21 -07:00
|
|
|
|
2016-10-20 15:24:58 -07:00
|
|
|
visitKeyedWrite(ast: KeyedWrite, context: any) {}
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2020-04-08 10:14:18 -07:00
|
|
|
visitAll(asts: any[]): any[] {
|
|
|
|
return asts.map(node => node.visit(this));
|
|
|
|
}
|
2015-06-22 08:21:03 -07:00
|
|
|
|
2016-10-20 15:24:58 -07:00
|
|
|
visitChain(ast: Chain, context: any) {}
|
2015-11-23 17:58:12 -08:00
|
|
|
|
2016-10-20 15:24:58 -07:00
|
|
|
visitQuote(ast: Quote, context: any) {}
|
2015-06-22 08:21:03 -07:00
|
|
|
}
|
2020-01-06 17:27:29 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This class extends SimpleExpressionChecker used in View Engine and performs more strict checks to
|
|
|
|
* make sure host bindings do not contain pipes. In View Engine, having pipes in host bindings is
|
|
|
|
* not supported as well, but in some cases (like `!(value | async)`) the error is not triggered at
|
|
|
|
* compile time. In order to preserve View Engine behavior, more strict checks are introduced for
|
|
|
|
* Ivy mode only.
|
|
|
|
*/
|
|
|
|
class IvySimpleExpressionChecker extends SimpleExpressionChecker {
|
|
|
|
visitBinary(ast: Binary, context: any) {
|
|
|
|
ast.left.visit(this);
|
|
|
|
ast.right.visit(this);
|
|
|
|
}
|
|
|
|
|
2020-04-08 10:14:18 -07:00
|
|
|
visitPrefixNot(ast: PrefixNot, context: any) {
|
|
|
|
ast.expression.visit(this);
|
|
|
|
}
|
2020-03-02 16:38:55 -08:00
|
|
|
}
|