Merge branch 'tsconfig-no-implicit-this'

This commit is contained in:
Torkel Ödegaard
2018-08-30 11:46:13 +02:00
27 changed files with 90 additions and 113 deletions
@@ -1,6 +1,6 @@
import { Lexer } from './lexer';
export function Parser(expression) {
export function Parser(this: any, expression) {
this.expression = expression;
this.lexer = new Lexer(expression);
this.tokens = this.lexer.tokenize();