Comparing version 0.26.0 to 0.26.1
@@ -9,2 +9,16 @@ import * as wasm from './polar_wasm_api_bg.wasm'; | ||
let heap_next = heap.length; | ||
function dropObject(idx) { | ||
if (idx < 36) return; | ||
heap[idx] = heap_next; | ||
heap_next = idx; | ||
} | ||
function takeObject(idx) { | ||
const ret = getObject(idx); | ||
dropObject(idx); | ||
return ret; | ||
} | ||
let WASM_VECTOR_LEN = 0; | ||
@@ -87,16 +101,2 @@ | ||
let heap_next = heap.length; | ||
function dropObject(idx) { | ||
if (idx < 36) return; | ||
heap[idx] = heap_next; | ||
heap_next = idx; | ||
} | ||
function takeObject(idx) { | ||
const ret = getObject(idx); | ||
dropObject(idx); | ||
return ret; | ||
} | ||
let cachegetFloat64Memory0 = null; | ||
@@ -422,2 +422,6 @@ function getFloat64Memory0() { | ||
export function __wbindgen_object_drop_ref(arg0) { | ||
takeObject(arg0); | ||
}; | ||
export function __wbindgen_string_get(arg0, arg1) { | ||
@@ -432,6 +436,2 @@ const obj = getObject(arg1); | ||
export function __wbindgen_object_drop_ref(arg0) { | ||
takeObject(arg0); | ||
}; | ||
export function __wbindgen_boolean_get(arg0) { | ||
@@ -466,9 +466,9 @@ const v = getObject(arg0); | ||
export function __wbindgen_object_clone_ref(arg0) { | ||
var ret = getObject(arg0); | ||
export function __wbindgen_string_new(arg0, arg1) { | ||
var ret = getStringFromWasm0(arg0, arg1); | ||
return addHeapObject(ret); | ||
}; | ||
export function __wbindgen_string_new(arg0, arg1) { | ||
var ret = getStringFromWasm0(arg0, arg1); | ||
export function __wbindgen_object_clone_ref(arg0) { | ||
var ret = getObject(arg0); | ||
return addHeapObject(ret); | ||
@@ -525,3 +525,3 @@ }; | ||
export function __wbg_error_3390c29f8e6114b9(arg0, arg1) { | ||
export function __wbg_error_e793d7cbf03cad25(arg0, arg1) { | ||
console.error(getStringFromWasm0(arg0, arg1)); | ||
@@ -528,0 +528,0 @@ }; |
@@ -12,2 +12,16 @@ let imports = {}; | ||
let heap_next = heap.length; | ||
function dropObject(idx) { | ||
if (idx < 36) return; | ||
heap[idx] = heap_next; | ||
heap_next = idx; | ||
} | ||
function takeObject(idx) { | ||
const ret = getObject(idx); | ||
dropObject(idx); | ||
return ret; | ||
} | ||
let WASM_VECTOR_LEN = 0; | ||
@@ -88,16 +102,2 @@ | ||
let heap_next = heap.length; | ||
function dropObject(idx) { | ||
if (idx < 36) return; | ||
heap[idx] = heap_next; | ||
heap_next = idx; | ||
} | ||
function takeObject(idx) { | ||
const ret = getObject(idx); | ||
dropObject(idx); | ||
return ret; | ||
} | ||
let cachegetFloat64Memory0 = null; | ||
@@ -423,2 +423,6 @@ function getFloat64Memory0() { | ||
module.exports.__wbindgen_object_drop_ref = function(arg0) { | ||
takeObject(arg0); | ||
}; | ||
module.exports.__wbindgen_string_get = function(arg0, arg1) { | ||
@@ -433,6 +437,2 @@ const obj = getObject(arg1); | ||
module.exports.__wbindgen_object_drop_ref = function(arg0) { | ||
takeObject(arg0); | ||
}; | ||
module.exports.__wbindgen_boolean_get = function(arg0) { | ||
@@ -467,9 +467,9 @@ const v = getObject(arg0); | ||
module.exports.__wbindgen_object_clone_ref = function(arg0) { | ||
var ret = getObject(arg0); | ||
module.exports.__wbindgen_string_new = function(arg0, arg1) { | ||
var ret = getStringFromWasm0(arg0, arg1); | ||
return addHeapObject(ret); | ||
}; | ||
module.exports.__wbindgen_string_new = function(arg0, arg1) { | ||
var ret = getStringFromWasm0(arg0, arg1); | ||
module.exports.__wbindgen_object_clone_ref = function(arg0) { | ||
var ret = getObject(arg0); | ||
return addHeapObject(ret); | ||
@@ -526,3 +526,3 @@ }; | ||
module.exports.__wbg_error_3390c29f8e6114b9 = function(arg0, arg1) { | ||
module.exports.__wbg_error_e793d7cbf03cad25 = function(arg0, arg1) { | ||
console.error(getStringFromWasm0(arg0, arg1)); | ||
@@ -529,0 +529,0 @@ }; |
{ | ||
"name": "oso", | ||
"version": "0.26.0", | ||
"version": "0.26.1", | ||
"description": "oso authorization library.", | ||
@@ -5,0 +5,0 @@ "bin": "bin/repl.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
2725794