mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-06-14 23:41:30 +00:00
Restructure types; Add a use-case specific options parser; Allow (re)creation of specific parser fixtures
This commit is contained in:
@ -76,12 +76,10 @@ import {
|
||||
ParameterNode,
|
||||
ParameterKind,
|
||||
ExportMember,
|
||||
SwitchCase,
|
||||
DeclarationStatement
|
||||
SwitchCase
|
||||
} from "../ast";
|
||||
|
||||
import {
|
||||
Token,
|
||||
operatorTokenToString
|
||||
} from "../tokenizer";
|
||||
|
||||
|
2
src/glue/js/binaryen.d.ts
vendored
2
src/glue/js/binaryen.d.ts
vendored
@ -1,4 +1,6 @@
|
||||
/** @module glue/js *//***/
|
||||
|
||||
/// <reference path="../binaryen.d.ts" />
|
||||
|
||||
declare function allocate_memory(size: usize): usize;
|
||||
declare function free_memory(ptr: usize): void;
|
||||
|
@ -4,10 +4,12 @@
|
||||
* @preferred
|
||||
*//***/
|
||||
|
||||
/// <reference path="../../../std/portable.d.ts" />
|
||||
/// <reference path="../binaryen.d.ts" />
|
||||
/// <reference path="./binaryen.d.ts" />
|
||||
/// <reference path="./float.d.ts" />
|
||||
/// <reference path="./i64.d.ts" />
|
||||
/// <reference path="./node.d.ts" />
|
||||
|
||||
import "../../../std/portable";
|
||||
import "../../../std/portable/index";
|
||||
import "./binaryen";
|
||||
import "./i64";
|
||||
import "./float";
|
||||
import "./i64";
|
||||
|
@ -4,5 +4,6 @@
|
||||
* @preferred
|
||||
*//***/
|
||||
|
||||
import "../binaryen.d";
|
||||
import "./i64";
|
||||
import "./float";
|
||||
|
@ -9,7 +9,6 @@
|
||||
],
|
||||
"exclude": [
|
||||
"./binary.ts",
|
||||
"./extra/**",
|
||||
"./glue/wasm/**"
|
||||
]
|
||||
}
|
||||
|
Reference in New Issue
Block a user