mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-02 18:31:05 +00:00
uses (JS) const
for stack and slab declarations (#415)
This commit is contained in:
parent
791e69a5c0
commit
d179503a63
@ -766,7 +766,7 @@ impl<'a> Context<'a> {
|
|||||||
}
|
}
|
||||||
self.global(&format!(
|
self.global(&format!(
|
||||||
"
|
"
|
||||||
let stack = [];
|
const stack = [];
|
||||||
"
|
"
|
||||||
));
|
));
|
||||||
if self.config.debug {
|
if self.config.debug {
|
||||||
@ -793,7 +793,7 @@ impl<'a> Context<'a> {
|
|||||||
"{ obj: true }",
|
"{ obj: true }",
|
||||||
"{ obj: false }",
|
"{ obj: false }",
|
||||||
];
|
];
|
||||||
self.global(&format!("let slab = [{}];", initial_values.join(", ")));
|
self.global(&format!("const slab = [{}];", initial_values.join(", ")));
|
||||||
if self.config.debug {
|
if self.config.debug {
|
||||||
self.export(
|
self.export(
|
||||||
"assertSlabEmpty",
|
"assertSlabEmpty",
|
||||||
|
@ -47,7 +47,7 @@ and what we actually generate looks something like:
|
|||||||
// foo.js
|
// foo.js
|
||||||
import * as wasm from './foo_bg';
|
import * as wasm from './foo_bg';
|
||||||
|
|
||||||
let stack = [];
|
const stack = [];
|
||||||
|
|
||||||
function addBorrowedObject(obj) {
|
function addBorrowedObject(obj) {
|
||||||
stack.push(obj);
|
stack.push(obj);
|
||||||
@ -135,7 +135,7 @@ different. Let's see the generated JS's slab in action:
|
|||||||
```js
|
```js
|
||||||
import * as wasm from './foo_bg'; // imports from wasm file
|
import * as wasm from './foo_bg'; // imports from wasm file
|
||||||
|
|
||||||
let slab = [];
|
const slab = [];
|
||||||
let slab_next = 0;
|
let slab_next = 0;
|
||||||
|
|
||||||
function addHeapObject(obj) {
|
function addHeapObject(obj) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user