mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
tsconfig: started on setting noImplicitThis to true
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user