From 866e6e053898ed3f32b4326e69ca7430f13b00a0 Mon Sep 17 00:00:00 2001 From: Near Huscarl Date: Sun, 25 Dec 2022 17:42:52 +0700 Subject: [PATCH] update scope.ts path in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cfaf1b63..8010acad 100644 --- a/README.md +++ b/README.md @@ -433,7 +433,7 @@ Scope The object exposed as `path.scope` during AST traversals provides information about variable and function declarations in the scope that -contains `path.node`. See [scope.ts](lib/scope.ts) for its public +contains `path.node`. See [scope.ts](src/scope.ts) for its public interface, which currently includes `.isGlobal`, `.getGlobalScope()`, `.depth`, `.declares(name)`, `.lookup(name)`, and `.getBindings()`.