fix(parser): handle empty strings
This commit is contained in:
parent
6f889e3094
commit
a3d9f0fead
|
@ -18,6 +18,16 @@ export class AST {
|
|||
}
|
||||
}
|
||||
|
||||
export class EmptyExpr extends AST {
|
||||
eval(context) {
|
||||
return null;
|
||||
}
|
||||
|
||||
visit(visitor, args) {
|
||||
//do nothing
|
||||
}
|
||||
}
|
||||
|
||||
export class ImplicitReceiver extends AST {
|
||||
eval(context) {
|
||||
return context;
|
||||
|
|
|
@ -5,6 +5,7 @@ import {Lexer, EOF, Token, $PERIOD, $COLON, $SEMICOLON, $LBRACKET, $RBRACKET,
|
|||
import {reflector, Reflector} from 'reflection/reflection';
|
||||
import {
|
||||
AST,
|
||||
EmptyExpr,
|
||||
ImplicitReceiver,
|
||||
AccessMember,
|
||||
LiteralPrimitive,
|
||||
|
@ -146,7 +147,9 @@ class _ParseAST {
|
|||
this.error(`Unexpected token '${this.next}'`);
|
||||
}
|
||||
}
|
||||
return exprs.length == 1 ? exprs[0] : new Chain(exprs);
|
||||
if (exprs.length == 0) return new EmptyExpr();
|
||||
if (exprs.length == 1) return exprs[0];
|
||||
return new Chain(exprs);
|
||||
}
|
||||
|
||||
parseFormatter() {
|
||||
|
|
|
@ -150,6 +150,10 @@ export function main() {
|
|||
expectEvalError("null + null").toThrowError();
|
||||
expectEvalError("null - null").toThrowError();
|
||||
});
|
||||
|
||||
it('should parse an empty string', () => {
|
||||
expectEval('').toBeNull();
|
||||
});
|
||||
});
|
||||
|
||||
describe("literals", () => {
|
||||
|
@ -376,7 +380,7 @@ export function main() {
|
|||
}
|
||||
|
||||
it('should parse an empty string', () => {
|
||||
var bindings = parseTemplateBindings("");
|
||||
var bindings = parseTemplateBindings('');
|
||||
expect(bindings).toEqual([]);
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue