From 74f8ea3b3c0d22716ab793f078ec21ae1b42c8d0 Mon Sep 17 00:00:00 2001 From: Tan Li Hau Date: Wed, 30 Oct 2019 22:31:46 +0800 Subject: [PATCH] fix lint --- src/compiler/compile/utils/scope.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/compiler/compile/utils/scope.ts b/src/compiler/compile/utils/scope.ts index 1f50560b66..e103defa4d 100644 --- a/src/compiler/compile/utils/scope.ts +++ b/src/compiler/compile/utils/scope.ts @@ -1,9 +1,8 @@ import { Node } from 'estree'; import { analyze, Scope, extract_names, extract_identifiers } from 'periscopic'; -// TODO replace this with periscopic? export function create_scopes(expression: Node) { return analyze(expression); } -export { Scope, extract_names, extract_identifiers } +export { Scope, extract_names, extract_identifiers };