@biomejs/wasm-web
Advanced tools
Comparing version 1.8.3 to 1.8.4-nightly.a579bf7
@@ -9,2 +9,16 @@ let wasm; | ||
let heap_next = heap.length; | ||
function dropObject(idx) { | ||
if (idx < 132) return; | ||
heap[idx] = heap_next; | ||
heap_next = idx; | ||
} | ||
function takeObject(idx) { | ||
const ret = getObject(idx); | ||
dropObject(idx); | ||
return ret; | ||
} | ||
function isLikeNone(x) { | ||
@@ -97,16 +111,2 @@ return x === undefined || x === null; | ||
let heap_next = heap.length; | ||
function dropObject(idx) { | ||
if (idx < 132) return; | ||
heap[idx] = heap_next; | ||
heap_next = idx; | ||
} | ||
function takeObject(idx) { | ||
const ret = getObject(idx); | ||
dropObject(idx); | ||
return ret; | ||
} | ||
function addHeapObject(obj) { | ||
@@ -728,2 +728,13 @@ if (heap_next === heap.length) heap.push(heap.length + 1); | ||
imports.wbg = {}; | ||
imports.wbg.__wbindgen_is_undefined = function(arg0) { | ||
const ret = getObject(arg0) === undefined; | ||
return ret; | ||
}; | ||
imports.wbg.__wbindgen_in = function(arg0, arg1) { | ||
const ret = getObject(arg0) in getObject(arg1); | ||
return ret; | ||
}; | ||
imports.wbg.__wbindgen_object_drop_ref = function(arg0) { | ||
takeObject(arg0); | ||
}; | ||
imports.wbg.__wbindgen_boolean_get = function(arg0) { | ||
@@ -757,9 +768,2 @@ const v = getObject(arg0); | ||
}; | ||
imports.wbg.__wbindgen_in = function(arg0, arg1) { | ||
const ret = getObject(arg0) in getObject(arg1); | ||
return ret; | ||
}; | ||
imports.wbg.__wbindgen_object_drop_ref = function(arg0) { | ||
takeObject(arg0); | ||
}; | ||
imports.wbg.__wbindgen_bigint_from_i64 = function(arg0) { | ||
@@ -785,6 +789,2 @@ const ret = arg0; | ||
}; | ||
imports.wbg.__wbindgen_is_undefined = function(arg0) { | ||
const ret = getObject(arg0) === undefined; | ||
return ret; | ||
}; | ||
imports.wbg.__wbindgen_as_number = function(arg0) { | ||
@@ -791,0 +791,0 @@ const ret = +getObject(arg0); |
{ | ||
"name": "@biomejs/wasm-web", | ||
"type": "module", | ||
"collaborators": [ | ||
@@ -7,3 +8,3 @@ "Biome Developers and Contributors" | ||
"description": "WebAssembly bindings to the Biome workspace API", | ||
"version": "1.8.3", | ||
"version": "1.8.4-nightly.a579bf7", | ||
"license": "MIT OR Apache-2.0", | ||
@@ -19,3 +20,3 @@ "repository": { | ||
], | ||
"module": "biome_wasm.js", | ||
"main": "biome_wasm.js", | ||
"homepage": "https://biomejs.dev/", | ||
@@ -22,0 +23,0 @@ "types": "biome_wasm.d.ts", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
12579951
3850
Yes
1