mirror of
https://github.com/grafana/grafana.git
synced 2026-08-14 07:04:57 -05:00
Merge branch 'tsconfig-no-implicit-this'
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