compilation working file older than 0.4.12

pull/478/head
aniket-engg 4 years ago committed by Aniket
parent 2bf868bd27
commit e318740639
  1. 3
      libs/remix-astwalker/src/astWalker.ts

@ -223,8 +223,7 @@ export class AstWalker extends EventEmitter {
// Normalizes parameter callback and calls walkFullInternal // Normalizes parameter callback and calls walkFullInternal
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
walkFull(ast: AstNode, callback: any) { walkFull(ast: AstNode, callback: any) {
if (!isAstNode(ast)) throw new TypeError("first argument should be an ast"); if (isAstNode(ast)) return this.walkFullInternal(ast, callback);
return this.walkFullInternal(ast, callback);
} }
// eslint-disable-next-line @typescript-eslint/ban-types, @typescript-eslint/explicit-module-boundary-types // eslint-disable-next-line @typescript-eslint/ban-types, @typescript-eslint/explicit-module-boundary-types

Loading…
Cancel
Save