2014-10-28 12:22:38 -04:00
|
|
|
import {FIELD, int} from 'facade/lang';
|
|
|
|
import {ListWrapper, List} from 'facade/collection';
|
|
|
|
import {Lexer, EOF, Token, $PERIOD} from './lexer';
|
|
|
|
import {ClosureMap} from './closure_map';
|
2014-10-30 23:47:22 -07:00
|
|
|
import {AST, ImplicitReceiver, FieldRead, LiteralPrimitive, Expression,
|
|
|
|
Binary, PrefixNot } from './ast';
|
2014-10-28 12:22:38 -04:00
|
|
|
|
|
|
|
var _implicitReceiver = new ImplicitReceiver();
|
|
|
|
|
2014-09-26 13:52:12 -07:00
|
|
|
export class Parser {
|
2014-10-28 12:22:38 -04:00
|
|
|
@FIELD('final _lexer:Lexer')
|
|
|
|
@FIELD('final _closureMap:ClosureMap')
|
|
|
|
constructor(lexer:Lexer, closureMap:ClosureMap){
|
|
|
|
this._lexer = lexer;
|
|
|
|
this._closureMap = closureMap;
|
|
|
|
}
|
|
|
|
|
|
|
|
parse(input:string):AST {
|
|
|
|
var tokens = this._lexer.tokenize(input);
|
|
|
|
return new _ParseAST(tokens, this._closureMap).parseChain();
|
|
|
|
}
|
2014-09-26 13:52:12 -07:00
|
|
|
}
|
2014-10-28 12:22:38 -04:00
|
|
|
|
|
|
|
class _ParseAST {
|
|
|
|
@FIELD('final tokens:List<Token>')
|
|
|
|
@FIELD('final closureMap:ClosureMap')
|
|
|
|
@FIELD('index:int')
|
|
|
|
constructor(tokens:List, closureMap:ClosureMap) {
|
|
|
|
this.tokens = tokens;
|
|
|
|
this.index = 0;
|
|
|
|
this.closureMap = closureMap;
|
|
|
|
}
|
|
|
|
|
|
|
|
peek(offset:int):Token {
|
|
|
|
var i = this.index + offset;
|
|
|
|
return i < this.tokens.length ? this.tokens[i] : EOF;
|
|
|
|
}
|
|
|
|
|
|
|
|
get next():Token {
|
|
|
|
return this.peek(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
advance() {
|
|
|
|
this.index ++;
|
|
|
|
}
|
|
|
|
|
|
|
|
optionalCharacter(code:int):boolean {
|
|
|
|
if (this.next.isCharacter(code)) {
|
|
|
|
this.advance();
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-30 23:47:22 -07:00
|
|
|
optionalOperator(op:string):boolean {
|
|
|
|
if (this.next.isOperator(op)) {
|
|
|
|
this.advance();
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
parseLogicalOr() {
|
|
|
|
// '||'
|
|
|
|
var result = this.parseLogicalAnd();
|
|
|
|
while (this.optionalOperator('||')) {
|
|
|
|
result = new Binary('||', result, this.parseLogicalAnd());
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
parseLogicalAnd() {
|
|
|
|
// '&&'
|
|
|
|
var result = this.parseEquality();
|
|
|
|
while (this.optionalOperator('&&')) {
|
|
|
|
result = new Binary('&&', result, this.parseEquality());
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
parseEquality() {
|
|
|
|
// '==','!='
|
|
|
|
var result = this.parseRelational();
|
|
|
|
while (true) {
|
|
|
|
if (this.optionalOperator('==')) {
|
|
|
|
result = new Binary('==', result, this.parseRelational());
|
|
|
|
} else if (this.optionalOperator('!=')) {
|
|
|
|
result = new Binary('!=', result, this.parseRelational());
|
|
|
|
} else {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
parseRelational() {
|
|
|
|
// '<', '>', '<=', '>='
|
|
|
|
var result = this.parseAdditive();
|
|
|
|
while (true) {
|
|
|
|
if (this.optionalOperator('<')) {
|
|
|
|
result = new Binary('<', result, this.parseAdditive());
|
|
|
|
} else if (this.optionalOperator('>')) {
|
|
|
|
result = new Binary('>', result, this.parseAdditive());
|
|
|
|
} else if (this.optionalOperator('<=')) {
|
|
|
|
result = new Binary('<=', result, this.parseAdditive());
|
|
|
|
} else if (this.optionalOperator('>=')) {
|
|
|
|
result = new Binary('>=', result, this.parseAdditive());
|
|
|
|
} else {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
parseAdditive() {
|
|
|
|
// '+', '-'
|
|
|
|
var result = this.parseMultiplicative();
|
|
|
|
while (true) {
|
|
|
|
if (this.optionalOperator('+')) {
|
|
|
|
result = new Binary('+', result, this.parseMultiplicative());
|
|
|
|
} else if (this.optionalOperator('-')) {
|
|
|
|
result = new Binary('-', result, this.parseMultiplicative());
|
|
|
|
} else {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
parseMultiplicative() {
|
|
|
|
// '*', '%', '/', '~/'
|
|
|
|
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());
|
|
|
|
// TODO(rado): This exists only in Dart, figure out whether to support it.
|
|
|
|
// } else if (this.optionalOperator('~/')) {
|
|
|
|
// result = new BinaryTruncatingDivide(result, this.parsePrefix());
|
|
|
|
} else {
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
parsePrefix() {
|
|
|
|
if (this.optionalOperator('+')) {
|
|
|
|
return this.parsePrefix();
|
|
|
|
} else if (this.optionalOperator('-')) {
|
|
|
|
return new Binary('-', new LiteralPrimitive(0), this.parsePrefix());
|
|
|
|
} else if (this.optionalOperator('!')) {
|
|
|
|
return new PrefixNot(this.parsePrefix());
|
|
|
|
} else {
|
|
|
|
return this.parseAccessOrCallMember();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-10-28 12:22:38 -04:00
|
|
|
parseChain():AST {
|
|
|
|
var exprs = [];
|
|
|
|
while (this.index < this.tokens.length) {
|
2014-10-30 23:47:22 -07:00
|
|
|
ListWrapper.push(exprs, this.parseLogicalOr());
|
2014-10-28 12:22:38 -04:00
|
|
|
}
|
|
|
|
return ListWrapper.first(exprs);
|
|
|
|
}
|
|
|
|
|
|
|
|
parseAccess():AST {
|
|
|
|
var result = this.parseFieldRead(_implicitReceiver);
|
|
|
|
while(this.optionalCharacter($PERIOD)) {
|
|
|
|
result = this.parseFieldRead(result);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2014-10-30 23:47:22 -07:00
|
|
|
parseAccessOrCallMember() {
|
|
|
|
var result = this.parsePrimary();
|
|
|
|
// TODO: add missing cases.
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
parsePrimary() {
|
|
|
|
var value;
|
|
|
|
// TODO: add missing cases.
|
|
|
|
|
|
|
|
if (this.next.isKeywordNull() || this.next.isKeywordUndefined()) {
|
|
|
|
this.advance();
|
|
|
|
return new LiteralPrimitive(null);
|
|
|
|
} else if (this.next.isKeywordTrue()) {
|
|
|
|
this.advance();
|
|
|
|
return new LiteralPrimitive(true);
|
|
|
|
} else if (this.next.isKeywordFalse()) {
|
|
|
|
this.advance();
|
|
|
|
return new LiteralPrimitive(false);
|
|
|
|
} else if (this.next.isIdentifier()) {
|
|
|
|
return this.parseAccess();
|
|
|
|
} else if (this.next.isNumber()) {
|
|
|
|
value = this.next.toNumber();
|
|
|
|
this.advance();
|
|
|
|
return new LiteralPrimitive(value);
|
|
|
|
} else if (this.next.isString()) {
|
|
|
|
value = this.next.toString();
|
|
|
|
this.advance();
|
|
|
|
return new LiteralPrimitive(value);
|
|
|
|
} else if (this.index >= this.tokens.length) {
|
|
|
|
throw `Unexpected end of expression: ${this.input}`;
|
|
|
|
} else {
|
|
|
|
throw `Unexpected token ${this.next}`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-28 12:22:38 -04:00
|
|
|
parseFieldRead(receiver):AST {
|
|
|
|
var id = this.parseIdentifier();
|
|
|
|
return new FieldRead(receiver, id, this.closureMap.getter(id));
|
|
|
|
}
|
|
|
|
|
|
|
|
parseIdentifier():string {
|
|
|
|
var n = this.next;
|
|
|
|
this.advance();
|
|
|
|
return n.toString();
|
|
|
|
}
|
2014-10-30 23:47:22 -07:00
|
|
|
}
|