warpo 2.2.3 → 2.2.4
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/assemblyscript/std/assembly/index.d.ts +1 -1
- package/create/index.ts +1 -1
- package/dist/warpo.js +0 -0
- package/package.json +2 -1
- package/types/warpo/index.d.ts +5 -5
package/README.md
CHANGED
|
@@ -84,7 +84,7 @@ declare type stringview_iter = ref_stringview_iter | null;
|
|
|
84
84
|
|
|
85
85
|
/** Compiler target. 0 = JS, 1 = WASM32, 2 = WASM64. */
|
|
86
86
|
declare const ASC_TARGET: i32;
|
|
87
|
-
/** Runtime type. 0 = Stub, 1 =
|
|
87
|
+
/** Runtime type. 0 = Stub, 1 = Radical, 2 = Incremental. */
|
|
88
88
|
declare const ASC_RUNTIME: i32;
|
|
89
89
|
/** Provided noAssert option. */
|
|
90
90
|
declare const ASC_NO_ASSERT: bool;
|
package/create/index.ts
CHANGED
package/dist/warpo.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "warpo",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.4",
|
|
4
4
|
"description": "next generation AssemblyScript compiler with optimizations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
"test:debug_symbol:update": "cross-env-shell build/tests/DebugSymbol/TestDebugSymbol --update-fixtures",
|
|
21
21
|
"test:driver": "node tests/driver/index.mjs",
|
|
22
22
|
"test": "npm run test:as:ut && npm run test:cpp:ut && npm run test:as:snapshot && npm run test:opt:snapshot && npm run test:driver && npm run test:debug_symbol && npm run test:bootstrap:debug && npm run test:bootstrap:release",
|
|
23
|
+
"test:update": "npm run test:as:snapshot -- -u && npm run test:opt:snapshot -- -u && npm run test:driver -- -u && npm run test:debug_symbol -- -u",
|
|
23
24
|
"docs:dev": "vitepress dev docs",
|
|
24
25
|
"docs:build": "vitepress build docs",
|
|
25
26
|
"prettier": "prettier --check .",
|
package/types/warpo/index.d.ts
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
/// <reference path="../../assemblyscript/std/assembly/index.d.ts" />
|
|
2
2
|
|
|
3
|
-
declare
|
|
3
|
+
declare module "rt/index" {
|
|
4
|
+
export function __collect(): void;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
declare module "warpo/utf8/const_str" {
|
|
4
8
|
class ConstStr {
|
|
5
9
|
toString(): string;
|
|
6
10
|
get addr(): usize;
|
|
@@ -8,7 +12,3 @@ declare namespace utf8 {
|
|
|
8
12
|
}
|
|
9
13
|
function build(s: string): ConstStr;
|
|
10
14
|
}
|
|
11
|
-
|
|
12
|
-
declare module "rt/itcms" {
|
|
13
|
-
export function __collect(): void;
|
|
14
|
-
}
|