You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/src/compiler/compile/utils/scope.ts

9 lines
249 B

import { Node } from 'estree';
import { analyze, Scope, extract_names, extract_identifiers } from 'periscopic';
export function create_scopes(expression: Node) {
return analyze(expression);
}
export { Scope, extract_names, extract_identifiers };