-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Cleaned javy and wizen the input js file * Update wizer and compatible wasmtime * wizen input js file and optimize it with binaryen * Migrate Guest(wasm engine) to component model and support hono * Migrate Host(serve runtime) to component model and support hono * Minor change in build.js for ec-wasm-js example * Move apis crate to apis folder in arakoo-core * Implemented fetch in component model * Added jsonnet wit file * Added jsonnet binding in component model * Added Event fetch event listener for Hono * programmatically adapt module to component in compiler * Log messages on the basis of env variables
- Loading branch information
Showing
65 changed files
with
1,739 additions
and
2,292 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,45 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* @returns {number} | ||
*/ | ||
* @returns {number} | ||
*/ | ||
export function jsonnet_make(): number; | ||
/** | ||
* @param {number} vm | ||
*/ | ||
* @param {number} vm | ||
*/ | ||
export function jsonnet_destroy(vm: number): void; | ||
/** | ||
* @param {number} vm | ||
* @param {string} filename | ||
* @param {string} snippet | ||
* @returns {string} | ||
*/ | ||
* @param {number} vm | ||
* @param {string} filename | ||
* @param {string} snippet | ||
* @returns {string} | ||
*/ | ||
export function jsonnet_evaluate_snippet(vm: number, filename: string, snippet: string): string; | ||
/** | ||
* @param {number} vm | ||
* @param {string} filename | ||
* @returns {string} | ||
*/ | ||
* @param {number} vm | ||
* @param {string} filename | ||
* @returns {string} | ||
*/ | ||
export function jsonnet_evaluate_file(vm: number, filename: string): string; | ||
/** | ||
* @param {number} vm | ||
* @param {string} key | ||
* @param {string} value | ||
*/ | ||
export function ext_string(vm: number, key: string, value: string): void; | ||
* @param {number} vm | ||
* @param {string} key | ||
* @param {string} value | ||
*/ | ||
export function jsonnet_ext_string(vm: number, key: string, value: string): void; | ||
/** | ||
* @param {string} name | ||
* @returns {Function | undefined} | ||
*/ | ||
* @param {string} name | ||
* @returns {Function | undefined} | ||
*/ | ||
export function get_func(name: string): Function | undefined; | ||
/** | ||
* @param {string} name | ||
* @param {Function} func | ||
*/ | ||
* @param {string} name | ||
* @param {Function} func | ||
*/ | ||
export function set_func(name: string, func: Function): void; | ||
/** | ||
* @param {number} vm | ||
* @param {string} name | ||
* @param {number} args_num | ||
*/ | ||
* @param {number} vm | ||
* @param {string} name | ||
* @param {number} args_num | ||
*/ | ||
export function register_native_callback(vm: number, name: string, args_num: number): void; |
Oops, something went wrong.