mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
ca66978a5a
This PR introduces Wasm ops. These calls are optimized for entry from Wasm land. The `#[op(wasm)]` attribute is opt-in. Last parameter `Option<&mut [u8]>` is the memory slice of the Wasm module *when entered from a Fast API call*. Otherwise, the user is expected to implement logic to obtain the memory if `None` ```rust #[op(wasm)] pub fn op_args_get( offset: i32, buffer_offset: i32, memory: Option<&mut [u8]>, ) { // ... } ```
7 lines
164 B
TypeScript
7 lines
164 B
TypeScript
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
|
|
|
export declare function op_wasm(): void;
|
|
|
|
export function call(): void {
|
|
op_wasm();
|
|
}
|