Skip to content

Commit cd14151

Browse files
committed
lint fix
1 parent 42e0b85 commit cd14151

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

packages/cubejs-schema-compiler/src/compiler/CubeSymbols.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -914,9 +914,7 @@ export class CubeSymbols implements TranspilerSymbolResolver, CompilerInterface
914914
* refactoring.
915915
*/
916916
protected evaluateContextFunction(cube: any, contextFn: any, context: any = {}) {
917-
const cubeEvaluator = this;
918-
919-
return cubeEvaluator.resolveSymbolsCall(contextFn, (name: string) => {
917+
return this.resolveSymbolsCall(contextFn, (name: string) => {
920918
const resolvedSymbol = this.resolveSymbol(cube, name);
921919
if (resolvedSymbol) {
922920
return resolvedSymbol;

0 commit comments

Comments
 (0)