mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-06-20 02:11:31 +00:00
Restructure types; Add a use-case specific options parser; Allow (re)creation of specific parser fixtures
This commit is contained in:
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";
|
||||
|
Reference in New Issue
Block a user