yuku-analyzer 0.6.1 → 0.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -155,7 +155,7 @@ const analyzer = new Analyzer({
|
|
|
155
155
|
|
|
156
156
|
## Performance
|
|
157
157
|
|
|
158
|
-
Analysis runs in the native parser pass, so full semantics cost roughly half of parsing time on top of the parse itself. Validated against
|
|
158
|
+
Analysis runs in the native parser pass, so full semantics cost roughly half of parsing time on top of the parse itself. Validated against every file in the [parser test corpus](https://yuku.fyi/testing/).
|
|
159
159
|
|
|
160
160
|
Concretely, on an Apple M-series machine: parsing plus complete semantic analysis of a typical source file lands well under a millisecond, walking sustains tens of millions of nodes per second, and linking a 2,000-module graph takes about a millisecond.
|
|
161
161
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "yuku-analyzer",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3",
|
|
4
4
|
"description": "Full JavaScript and TypeScript semantic analysis: scopes, symbols, resolved references, closures, and cross-file module linking, computed natively in Zig and queried as plain JavaScript objects",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
"decode.js"
|
|
22
22
|
],
|
|
23
23
|
"optionalDependencies": {
|
|
24
|
-
"@yuku-analyzer/binding-linux-x64-gnu": "0.6.
|
|
25
|
-
"@yuku-analyzer/binding-linux-arm64-gnu": "0.6.
|
|
26
|
-
"@yuku-analyzer/binding-linux-arm-gnu": "0.6.
|
|
27
|
-
"@yuku-analyzer/binding-linux-x64-musl": "0.6.
|
|
28
|
-
"@yuku-analyzer/binding-linux-arm64-musl": "0.6.
|
|
29
|
-
"@yuku-analyzer/binding-linux-arm-musl": "0.6.
|
|
30
|
-
"@yuku-analyzer/binding-darwin-x64": "0.6.
|
|
31
|
-
"@yuku-analyzer/binding-darwin-arm64": "0.6.
|
|
32
|
-
"@yuku-analyzer/binding-win32-x64": "0.6.
|
|
33
|
-
"@yuku-analyzer/binding-win32-arm64": "0.6.
|
|
34
|
-
"@yuku-analyzer/binding-freebsd-x64": "0.6.
|
|
24
|
+
"@yuku-analyzer/binding-linux-x64-gnu": "0.6.3",
|
|
25
|
+
"@yuku-analyzer/binding-linux-arm64-gnu": "0.6.3",
|
|
26
|
+
"@yuku-analyzer/binding-linux-arm-gnu": "0.6.3",
|
|
27
|
+
"@yuku-analyzer/binding-linux-x64-musl": "0.6.3",
|
|
28
|
+
"@yuku-analyzer/binding-linux-arm64-musl": "0.6.3",
|
|
29
|
+
"@yuku-analyzer/binding-linux-arm-musl": "0.6.3",
|
|
30
|
+
"@yuku-analyzer/binding-darwin-x64": "0.6.3",
|
|
31
|
+
"@yuku-analyzer/binding-darwin-arm64": "0.6.3",
|
|
32
|
+
"@yuku-analyzer/binding-win32-x64": "0.6.3",
|
|
33
|
+
"@yuku-analyzer/binding-win32-arm64": "0.6.3",
|
|
34
|
+
"@yuku-analyzer/binding-freebsd-x64": "0.6.3"
|
|
35
35
|
},
|
|
36
36
|
"keywords": [
|
|
37
37
|
"analyzer",
|