Skip to content

Commit dcf3446

Browse files
authored
Merge branch 'master' into patch-1
2 parents f605541 + 2390a6e commit dcf3446

File tree

8 files changed

+145
-81
lines changed

8 files changed

+145
-81
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
},
2626
"homepage": "https://sourceacademy.org/sicpjs",
2727
"devDependencies": {
28-
"@babel/core": "^7.26.0",
28+
"@babel/core": "^7.26.9",
2929
"@babel/node": "^7.26.0",
3030
"@babel/preset-env": "^7.26.0",
3131
"fs-extra": "^11.2.0",

xml/chapter2/section3/subsection4.xml

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -235,12 +235,7 @@ BACADAEAFABBAAAGAH</TD></TR></TABLE>
235235
there is only one node left, which is the root of the entire tree.
236236
Here is how the Huffman tree of figure<SPACE/><REF NAME="fig:huffman"/> was
237237
generated:
238-
<SPLIT>
239-
<SCHEME>
240-
<FIGURE src="img_tex/ch2_3_4-3.png"></FIGURE>
241-
</SCHEME>
242-
<JAVASCRIPT>
243-
<TABLE>
238+
<TABLE>
244239
<TR SINGLESPACE="yes">
245240
<TD>
246241
Initial leaves
@@ -305,9 +300,7 @@ BACADAEAFABBAAAGAH</TD></TR></TABLE>
305300
<LATEXINLINE>$\{$</LATEXINLINE>(<LATEXINLINE>$\{$</LATEXINLINE>A B C D E F G H<LATEXINLINE>$\}$</LATEXINLINE> 17)<LATEXINLINE>$\}$</LATEXINLINE>
306301
</TD>
307302
</TR>
308-
</TABLE>
309-
</JAVASCRIPT>
310-
</SPLIT>
303+
</TABLE>
311304
The algorithm does not always specify a unique tree, because there may
312305
not be unique smallest-weight nodes at each step. Also, the choice of
313306
the order in which the two nodes are merged (i.e., which will be the
@@ -1052,12 +1045,7 @@ equal(sample_tree,
10521045
<INDEX>rock songs, 1950s</INDEX>
10531046
rock songs. (Note that the <QUOTE>symbols</QUOTE> of an
10541047
<QUOTE>alphabet</QUOTE> need not be individual letters.)
1055-
<SPLIT>
1056-
<SCHEME>
1057-
<FIGURE src="img_tex/ch2_3_4-4.png"></FIGURE>
1058-
</SCHEME>
1059-
<JAVASCRIPT>
1060-
<TABLE>
1048+
<TABLE>
10611049
<TR SINGLESPACE="yes">
10621050
<TD>
10631051
A
@@ -1128,9 +1116,7 @@ equal(sample_tree,
11281116
<SPACE/><SPACE/>1
11291117
</TD>
11301118
</TR>
1131-
</TABLE>
1132-
</JAVASCRIPT>
1133-
</SPLIT>
1119+
</TABLE>
11341120
Use
11351121
<SPLITINLINE>
11361122
<SCHEME><SCHEMEINLINE>generate-huffman-tree</SCHEMEINLINE></SCHEME>

xml/chapter3/section1/subsection3.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1045,6 +1045,7 @@ paul_acc("withdraw", "rosebud")(50); // Withdraws 50, should return 40
10451045
</EXERCISE>
10461046

10471047
<EXERCISE>
1048+
<LABEL NAME="ex:3_8"/>
10481049
When we defined the evaluation model in
10491050
section<SPACE/><REF NAME="sec:evaluating-combinations"/>, we said that the
10501051
<INDEX>order of evaluation<SUBINDEX><ORDER>JavaScript</ORDER>in JavaScript</SUBINDEX></INDEX>

xml/chapter3/section2/section2.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -303,4 +303,7 @@
303303
<!-- Subsection 4 : Internal Definitions -->
304304
&amp;subsection3.2.4;
305305

306+
<!-- Subsection 5 : CSE Machine -->
307+
&amp;subsection3.2.5;
308+
306309
</SECTION>

xml/chapter3/section2/subsection5.xml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<SUBSECTION>
2+
<NAME>
3+
CSE Machine
4+
</NAME>
5+
6+
<LABEL NAME="sec:cse-machine"/>
7+
<INDEX>CSE machine<OPEN/></INDEX>
8+
9+
<SPLIT>
10+
<JAVASCRIPT>
11+
<TEXT>
12+
The environment model as presented so far focuses on how functions can refer
13+
to their parameters, locally declared names, and names that are declared
14+
outside the function. We achieve this by evaluating statements and expressions
15+
with respect to a <EM>current environment</EM>. It does not specify how
16+
we keep track of environments as computation proceeds. For example, when we
17+
evaluate an expression <JAVASCRIPTINLINE>f(x) + y</JAVASCRIPTINLINE>, we
18+
need to evaluate <JAVASCRIPTINLINE>x</JAVASCRIPTINLINE> in the current
19+
environment, establish as the new current environment the environment of
20+
<JAVASCRIPTINLINE>f</JAVASCRIPTINLINE> extended by a binding of its
21+
parameter to the value of <JAVASCRIPTINLINE>x</JAVASCRIPTINLINE>, and
22+
evaluate the body of <JAVASCRIPTINLINE>f</JAVASCRIPTINLINE> in this
23+
extended environment. But what environment should we use for evaluating
24+
<JAVASCRIPTINLINE>y</JAVASCRIPTINLINE> after
25+
<JAVASCRIPTINLINE>f</JAVASCRIPTINLINE> returns?
26+
In this section, we extend the
27+
</TEXT>
28+
29+
<SUBHEADING><NAME>Evaluating arithmetic expressions</NAME></SUBHEADING>
30+
31+
<TEXT>
32+
Exercise<SPACE/><REF NAME="ex:3_8"/> shows that the presence of
33+
assignments makes the result of a program depend on the order in which
34+
the operands of an operator combination are evaluated. To remove
35+
ambiguities that arise from this, the JavaScript standard specifies
36+
left-to-right evaluation of operands.
37+
38+
As an example, consider the evaluation of the arithmetic expression statement
39+
<SNIPPET>
40+
<JAVASCRIPT>
41+
1 + (2 * 3);
42+
</JAVASCRIPT>
43+
</SNIPPET>
44+
The expression is decomposed into its operands
45+
<JAVASCRIPTINLINE>1</JAVASCRIPTINLINE> and
46+
<JAVASCRIPTINLINE>2 * 3</JAVASCRIPTINLINE>, followed by the
47+
<EM>instruction</EM> to add their results.
48+
</TEXT>
49+
<INDEX>CSE machine<CLOSE/></INDEX>
50+
</JAVASCRIPT>
51+
</SPLIT>
52+
</SUBSECTION>

xml/chapter3/section5/subsection2.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,15 @@ const fibs = pair(0,
578578
by adding <SCHEMEINLINE>fibs</SCHEMEINLINE> to itself shifted by one place:
579579
<SPLIT>
580580
<SCHEME>
581-
<FIGURE src="img_tex/ch3_5_2-1.png"></FIGURE>
581+
<LATEX>
582+
\[
583+
\begin{array}{ccccccccccccl}
584+
&amp; &amp; 1 &amp; 1 &amp; 2 &amp; 3 &amp; 5 &amp; 8 &amp; 13 &amp; 21 &amp; \ldots &amp; = &amp; \texttt{(stream-cdr fibs)} \\
585+
&amp; &amp; 0 &amp; 1 &amp; 1 &amp; 2 &amp; 3 &amp; 5 &amp; 8 &amp; 13 &amp; \ldots &amp; = &amp; \texttt{fibs} \\ \hline
586+
0 &amp; 1 &amp; 1 &amp; 2 &amp; 3 &amp; 5 &amp; 8 &amp; 13 &amp; 21 &amp; 34 &amp; \ldots &amp; = &amp; \texttt{fibs}
587+
\end{array}
588+
\]
589+
</LATEX>
582590
</SCHEME>
583591
<JAVASCRIPT>
584592
<LATEX>

xml/chapter5/section5/subsection1.xml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,16 @@ go_to(reg("continue"))
514514
<!-- %Whew! What a pain it was to set this, because of the blank lines. -->
515515
<SPLIT>
516516
<SCHEME>
517-
<FIGURE src="img_original/preserving_table.svg"></FIGURE>
517+
\[
518+
\begin{array}{l|l|l|l}
519+
\textit{seq}_1 &amp; \texttt{(save}\ \textit{reg}_1\texttt{)} &amp; \texttt{(save}\ \textit{reg}_2\texttt{)} &amp; \texttt{(save}\ \textit{reg}_2\texttt{)} \\
520+
\textit{seq}_2 &amp; \textit{seq}_1 &amp; \textit{seq}_1 &amp; \texttt{(save}\ \textit{reg}_1\texttt{)} \\
521+
&amp; \texttt{(restore}\ \textit{reg}_1\texttt{)} &amp; \texttt{(restore}\ \textit{reg}_2\texttt{)} &amp; \textit{seq}_1 \\
522+
&amp; \textit{seq}_2 &amp; \textit{seq}_2 &amp; \texttt{(restore}\ \textit{reg}_1\texttt{)} \\
523+
&amp; &amp; &amp; \texttt{(restore}\ \textit{reg}_2\texttt{)} \\
524+
&amp; &amp; &amp; \textit{seq}_2
525+
\end{array}
526+
\]
518527
</SCHEME>
519528
<JAVASCRIPT>
520529
<LATEX>
@@ -525,7 +534,7 @@ go_to(reg("continue"))
525534
&amp; \texttt{restore(}\textit{reg}_1\texttt{),} &amp; \texttt{restore(}\textit{reg}_2\texttt{),} &amp; \textit{seq}_1 \\
526535
&amp; \textit{seq}_2 &amp; \textit{seq}_2 &amp; \texttt{restore(}\textit{reg}_1\texttt{),} \\
527536
&amp; &amp; &amp; \texttt{restore(}\textit{reg}_2\texttt{),} \\
528-
&amp; &amp; &amp; \textit{seq}_2
537+
&amp; &amp; &amp; \textit{seq}_2
529538
\end{array}
530539
\]
531540
</LATEX>

yarn.lock

Lines changed: 64 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"@jridgewell/gen-mapping" "^0.1.0"
1111
"@jridgewell/trace-mapping" "^0.3.9"
1212

13-
"@babel/code-frame@^7.25.9", "@babel/code-frame@^7.26.0":
13+
"@babel/code-frame@^7.26.2":
1414
version "7.26.2"
1515
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.26.2.tgz#4b5fab97d33338eff916235055f0ebc21e573a85"
1616
integrity sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==
@@ -19,39 +19,44 @@
1919
js-tokens "^4.0.0"
2020
picocolors "^1.0.0"
2121

22-
"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.25.9", "@babel/compat-data@^7.26.0":
22+
"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.26.0":
2323
version "7.26.2"
2424
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.2.tgz#278b6b13664557de95b8f35b90d96785850bb56e"
2525
integrity sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==
2626

27-
"@babel/core@^7.26.0":
28-
version "7.26.0"
29-
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.26.0.tgz#d78b6023cc8f3114ccf049eb219613f74a747b40"
30-
integrity sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==
27+
"@babel/compat-data@^7.26.5":
28+
version "7.26.8"
29+
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.26.8.tgz#821c1d35641c355284d4a870b8a4a7b0c141e367"
30+
integrity sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==
31+
32+
"@babel/core@^7.26.9":
33+
version "7.26.9"
34+
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.26.9.tgz#71838542a4b1e49dfed353d7acbc6eb89f4a76f2"
35+
integrity sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==
3136
dependencies:
3237
"@ampproject/remapping" "^2.2.0"
33-
"@babel/code-frame" "^7.26.0"
34-
"@babel/generator" "^7.26.0"
35-
"@babel/helper-compilation-targets" "^7.25.9"
38+
"@babel/code-frame" "^7.26.2"
39+
"@babel/generator" "^7.26.9"
40+
"@babel/helper-compilation-targets" "^7.26.5"
3641
"@babel/helper-module-transforms" "^7.26.0"
37-
"@babel/helpers" "^7.26.0"
38-
"@babel/parser" "^7.26.0"
39-
"@babel/template" "^7.25.9"
40-
"@babel/traverse" "^7.25.9"
41-
"@babel/types" "^7.26.0"
42+
"@babel/helpers" "^7.26.9"
43+
"@babel/parser" "^7.26.9"
44+
"@babel/template" "^7.26.9"
45+
"@babel/traverse" "^7.26.9"
46+
"@babel/types" "^7.26.9"
4247
convert-source-map "^2.0.0"
4348
debug "^4.1.0"
4449
gensync "^1.0.0-beta.2"
4550
json5 "^2.2.3"
4651
semver "^6.3.1"
4752

48-
"@babel/generator@^7.25.9", "@babel/generator@^7.26.0":
49-
version "7.26.2"
50-
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.2.tgz#87b75813bec87916210e5e01939a4c823d6bb74f"
51-
integrity sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==
53+
"@babel/generator@^7.26.9":
54+
version "7.26.9"
55+
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.26.9.tgz#75a9482ad3d0cc7188a537aa4910bc59db67cbca"
56+
integrity sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==
5257
dependencies:
53-
"@babel/parser" "^7.26.2"
54-
"@babel/types" "^7.26.0"
58+
"@babel/parser" "^7.26.9"
59+
"@babel/types" "^7.26.9"
5560
"@jridgewell/gen-mapping" "^0.3.5"
5661
"@jridgewell/trace-mapping" "^0.3.25"
5762
jsesc "^3.0.2"
@@ -78,12 +83,12 @@
7883
"@babel/traverse" "^7.25.9"
7984
"@babel/types" "^7.25.9"
8085

81-
"@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.25.9":
82-
version "7.25.9"
83-
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz#55af025ce365be3cdc0c1c1e56c6af617ce88875"
84-
integrity sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==
86+
"@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.25.9", "@babel/helper-compilation-targets@^7.26.5":
87+
version "7.26.5"
88+
resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz#75d92bb8d8d51301c0d49e52a65c9a7fe94514d8"
89+
integrity sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==
8590
dependencies:
86-
"@babel/compat-data" "^7.25.9"
91+
"@babel/compat-data" "^7.26.5"
8792
"@babel/helper-validator-option" "^7.25.9"
8893
browserslist "^4.24.0"
8994
lru-cache "^5.1.1"
@@ -237,13 +242,13 @@
237242
"@babel/traverse" "^7.25.9"
238243
"@babel/types" "^7.25.9"
239244

240-
"@babel/helpers@^7.26.0":
241-
version "7.26.0"
242-
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.26.0.tgz#30e621f1eba5aa45fe6f4868d2e9154d884119a4"
243-
integrity sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==
245+
"@babel/helpers@^7.26.9":
246+
version "7.26.9"
247+
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.26.9.tgz#28f3fb45252fc88ef2dc547c8a911c255fc9fef6"
248+
integrity sha512-Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA==
244249
dependencies:
245-
"@babel/template" "^7.25.9"
246-
"@babel/types" "^7.26.0"
250+
"@babel/template" "^7.26.9"
251+
"@babel/types" "^7.26.9"
247252

248253
"@babel/node@^7.26.0":
249254
version "7.26.0"
@@ -257,12 +262,12 @@
257262
regenerator-runtime "^0.14.0"
258263
v8flags "^3.1.1"
259264

260-
"@babel/parser@^7.19.4", "@babel/parser@^7.25.9", "@babel/parser@^7.26.0", "@babel/parser@^7.26.2":
261-
version "7.26.2"
262-
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.2.tgz#fd7b6f487cfea09889557ef5d4eeb9ff9a5abd11"
263-
integrity sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==
265+
"@babel/parser@^7.19.4", "@babel/parser@^7.26.9":
266+
version "7.26.9"
267+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.26.9.tgz#d9e78bee6dc80f9efd8f2349dcfbbcdace280fd5"
268+
integrity sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==
264269
dependencies:
265-
"@babel/types" "^7.26.0"
270+
"@babel/types" "^7.26.9"
266271

267272
"@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.25.9":
268273
version "7.25.9"
@@ -826,32 +831,32 @@
826831
dependencies:
827832
regenerator-runtime "^0.13.4"
828833

829-
"@babel/template@^7.25.9":
830-
version "7.25.9"
831-
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.9.tgz#ecb62d81a8a6f5dc5fe8abfc3901fc52ddf15016"
832-
integrity sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==
833-
dependencies:
834-
"@babel/code-frame" "^7.25.9"
835-
"@babel/parser" "^7.25.9"
836-
"@babel/types" "^7.25.9"
837-
838-
"@babel/traverse@^7.25.9":
839-
version "7.25.9"
840-
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.9.tgz#a50f8fe49e7f69f53de5bea7e413cd35c5e13c84"
841-
integrity sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==
842-
dependencies:
843-
"@babel/code-frame" "^7.25.9"
844-
"@babel/generator" "^7.25.9"
845-
"@babel/parser" "^7.25.9"
846-
"@babel/template" "^7.25.9"
847-
"@babel/types" "^7.25.9"
834+
"@babel/template@^7.25.9", "@babel/template@^7.26.9":
835+
version "7.26.9"
836+
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.26.9.tgz#4577ad3ddf43d194528cff4e1fa6b232fa609bb2"
837+
integrity sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==
838+
dependencies:
839+
"@babel/code-frame" "^7.26.2"
840+
"@babel/parser" "^7.26.9"
841+
"@babel/types" "^7.26.9"
842+
843+
"@babel/traverse@^7.25.9", "@babel/traverse@^7.26.9":
844+
version "7.26.9"
845+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.26.9.tgz#4398f2394ba66d05d988b2ad13c219a2c857461a"
846+
integrity sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==
847+
dependencies:
848+
"@babel/code-frame" "^7.26.2"
849+
"@babel/generator" "^7.26.9"
850+
"@babel/parser" "^7.26.9"
851+
"@babel/template" "^7.26.9"
852+
"@babel/types" "^7.26.9"
848853
debug "^4.3.1"
849854
globals "^11.1.0"
850855

851-
"@babel/types@^7.24.7", "@babel/types@^7.25.9", "@babel/types@^7.26.0", "@babel/types@^7.4.4":
852-
version "7.26.0"
853-
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.0.tgz#deabd08d6b753bc8e0f198f8709fb575e31774ff"
854-
integrity sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==
856+
"@babel/types@^7.24.7", "@babel/types@^7.25.9", "@babel/types@^7.26.9", "@babel/types@^7.4.4":
857+
version "7.26.9"
858+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.26.9.tgz#08b43dec79ee8e682c2ac631c010bdcac54a21ce"
859+
integrity sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==
855860
dependencies:
856861
"@babel/helper-string-parser" "^7.25.9"
857862
"@babel/helper-validator-identifier" "^7.25.9"

0 commit comments

Comments
 (0)