Commit ca43536
File tree
- .github/workflows
- crates/spidermonkey-embedding-splicer/src
- embedding
- src
- test/builtins
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
31 | | - | |
| 31 | + | |
32 | 32 | | |
33 | | - | |
34 | | - | |
35 | | - | |
36 | | - | |
| 33 | + | |
| 34 | + | |
37 | 35 | | |
38 | 36 | | |
39 | 37 | | |
| |||
Submodule StarlingMonkey updated 70 files
- .github/workflows/main.yml+47
- .gitignore+5
- CMakeLists.txt+4-2
- CODE_OF_CONDUCT.md+49
- README.md+25-7
- builtins/web/base64.cpp+2-1
- builtins/web/console.cpp+9-5
- builtins/web/crypto/crypto-algorithm.cpp+227-6
- builtins/web/crypto/crypto-key.cpp+3-2
- builtins/web/fetch/fetch-api.cpp-5
- builtins/web/fetch/fetch_event.cpp+15-9
- builtins/web/fetch/request-response.cpp+22-14
- builtins/web/performance.cpp+7-1
- builtins/web/streams/native-stream-source.cpp-11
- builtins/web/streams/transform-stream.cpp+1-2
- builtins/web/text-codec/text-encoder.cpp+3-1
- builtins/web/timers.cpp-3
- cmake/add_builtin.cmake+77-2
- cmake/build-crates.cmake-3
- cmake/builtins.cmake+67-40
- cmake/openssl.cmake+2-2
- cmake/spidermonkey.cmake+2-2
- cmake/wasmtime.cmake+1-1
- componentize.sh+5-2
- crates/rust-encoding/.gitignore-1
- crates/rust-encoding/Cargo.lock-34
- crates/rust-encoding/Cargo.toml-17
- crates/rust-encoding/cbindgen.toml-54
- crates/rust-encoding/src/lib.rs-1
- deps/include/rust-encoding.h+3
- host-apis/wasi-0.2.0-rc-2023-10-18/host_api.cpp-5
- host-apis/wasi-0.2.0-rc-2023-12-05/host_api.cpp-5
- host-apis/wasi-0.2.0/host_api.cpp-5
- include/extension-api.h+46-8
- include/host_api.h+1-1
- runtime/encode.h-1
- runtime/engine.cpp+30-13
- runtime/event_loop.cpp+48-27
- runtime/event_loop.h+11-8
- runtime/js.cpp+6-11
- runtime/script_loader.cpp+236-25
- runtime/script_loader.h+2-1
- rust-toolchain.toml+1-1
- tests/e2e/smoke/expect_serve_body.txt+46
- tests/e2e/smoke/expect_serve_stderr.txt
- tests/e2e/smoke/expect_serve_stdout.txt+2
- tests/e2e/smoke/nested-smoke-dependency.js
- tests/e2e/smoke/smoke-dependency.js+1-1
- tests/e2e/smoke/smoke.js+1-1
- tests/e2e/syntax-err/expect_wizer_fail
- tests/e2e/syntax-err/expect_wizer_stderr.txt+1
- tests/e2e/syntax-err/syntax-err.js+1
- tests/e2e/tla-err/expect_wizer_fail
- tests/e2e/tla-err/expect_wizer_stderr.txt+1
- tests/e2e/tla-err/tla-err.js+6
- tests/e2e/tla-runtime-resolve/expect_serve_body.txt+1
- tests/e2e/tla-runtime-resolve/expect_serve_stdout.txt+1
- tests/e2e/tla-runtime-resolve/tla-runtime-resolve.js+18
- tests/e2e/tla/expect_serve_body.txt+1
- tests/e2e/tla/tla.js+10
- tests/integration/assert.js+90
- tests/integration/btoa/btoa.js+378
- tests/integration/crypto/crypto.js+2.0k
- tests/integration/handlers.js+4
- tests/integration/performance/performance.js+282
- tests/integration/test-server.js+72
- tests/integration/tests/performance.js+285
- tests/integration/timers/timers.js+586
- tests/test.sh+128
- tests/tests.cmake+41
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
3 | | - | |
4 | | - | |
5 | | - | |
| 2 | + | |
6 | 3 | | |
7 | 4 | | |
8 | 5 | | |
9 | 6 | | |
10 | 7 | | |
11 | | - | |
12 | | - | |
13 | 8 | | |
14 | 9 | | |
15 | 10 | | |
| |||
39 | 34 | | |
40 | 35 | | |
41 | 36 | | |
42 | | - | |
43 | | - | |
44 | | - | |
45 | | - | |
| 37 | + | |
46 | 38 | | |
47 | 39 | | |
48 | 40 | | |
| |||
76 | 68 | | |
77 | 69 | | |
78 | 70 | | |
79 | | - | |
| 71 | + | |
80 | 72 | | |
81 | 73 | | |
82 | 74 | | |
| |||
94 | 86 | | |
95 | 87 | | |
96 | 88 | | |
| 89 | + | |
97 | 90 | | |
98 | 91 | | |
99 | 92 | | |
| |||
116 | 109 | | |
117 | 110 | | |
118 | 111 | | |
119 | | - | |
120 | | - | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
121 | 132 | | |
122 | 133 | | |
123 | 134 | | |
| |||
179 | 190 | | |
180 | 191 | | |
181 | 192 | | |
182 | | - | |
| 193 | + | |
183 | 194 | | |
184 | 195 | | |
185 | 196 | | |
| |||
226 | 237 | | |
227 | 238 | | |
228 | 239 | | |
229 | | - | |
230 | | - | |
231 | | - | |
232 | | - | |
233 | | - | |
234 | | - | |
235 | | - | |
236 | | - | |
237 | | - | |
238 | | - | |
239 | | - | |
240 | | - | |
241 | | - | |
242 | | - | |
243 | | - | |
244 | | - | |
245 | | - | |
246 | | - | |
247 | | - | |
248 | | - | |
249 | | - | |
250 | | - | |
251 | | - | |
252 | | - | |
253 | | - | |
254 | | - | |
255 | | - | |
256 | | - | |
257 | | - | |
258 | | - | |
259 | | - | |
260 | | - | |
261 | | - | |
262 | | - | |
263 | | - | |
264 | | - | |
265 | | - | |
266 | | - | |
267 | | - | |
268 | | - | |
269 | | - | |
270 | | - | |
271 | | - | |
272 | | - | |
273 | | - | |
274 | | - | |
275 | | - | |
276 | | - | |
277 | | - | |
278 | 240 | | |
279 | 241 | | |
280 | 242 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
70 | 70 | | |
71 | 71 | | |
72 | 72 | | |
73 | | - | |
| 73 | + | |
74 | 74 | | |
75 | 75 | | |
76 | 76 | | |
77 | 77 | | |
78 | 78 | | |
79 | 79 | | |
80 | 80 | | |
81 | | - | |
| 81 | + | |
82 | 82 | | |
83 | 83 | | |
84 | 84 | | |
85 | 85 | | |
86 | 86 | | |
87 | 87 | | |
88 | 88 | | |
89 | | - | |
| 89 | + | |
90 | 90 | | |
91 | 91 | | |
92 | 92 | | |
| |||
274 | 274 | | |
275 | 275 | | |
276 | 276 | | |
277 | | - | |
278 | 277 | | |
279 | 278 | | |
280 | 279 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
60 | 60 | | |
61 | 61 | | |
62 | 62 | | |
63 | | - | |
64 | | - | |
65 | | - | |
66 | | - | |
67 | 63 | | |
68 | 64 | | |
69 | 65 | | |
70 | | - | |
71 | | - | |
72 | | - | |
73 | | - | |
74 | 66 | | |
75 | 67 | | |
76 | 68 | | |
77 | | - | |
78 | | - | |
79 | | - | |
80 | | - | |
81 | 69 | | |
82 | | - | |
83 | | - | |
84 | | - | |
85 | | - | |
| 70 | + | |
86 | 71 | | |
87 | 72 | | |
88 | 73 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
53 | 53 | | |
54 | 54 | | |
55 | 55 | | |
56 | | - | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
57 | 61 | | |
58 | 62 | | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
16 | | - | |
| 16 | + | |
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
This file was deleted.
0 commit comments