@influxdata/flux-lsp-node
Advanced tools
Comparing version 0.5.8 to 0.5.9
@@ -26,2 +26,11 @@ let imports = {}; | ||
function addHeapObject(obj) { | ||
if (heap_next === heap.length) heap.push(heap.length + 1); | ||
const idx = heap_next; | ||
heap_next = heap[idx]; | ||
heap[idx] = obj; | ||
return idx; | ||
} | ||
let WASM_VECTOR_LEN = 0; | ||
@@ -70,11 +79,2 @@ | ||
function addHeapObject(obj) { | ||
if (heap_next === heap.length) heap.push(heap.length + 1); | ||
const idx = heap_next; | ||
heap_next = heap[idx]; | ||
heap[idx] = obj; | ||
return idx; | ||
} | ||
function makeMutClosure(arg0, arg1, dtor, f) { | ||
@@ -268,2 +268,7 @@ const state = { a: arg0, b: arg1, cnt: 1 }; | ||
module.exports.__wbindgen_object_clone_ref = function(arg0) { | ||
var ret = getObject(arg0); | ||
return addHeapObject(ret); | ||
}; | ||
module.exports.__wbindgen_cb_drop = function(arg0) { | ||
@@ -288,7 +293,2 @@ const obj = takeObject(arg0).original; | ||
module.exports.__wbindgen_string_new = function(arg0, arg1) { | ||
var ret = getStringFromWasm0(arg0, arg1); | ||
return addHeapObject(ret); | ||
}; | ||
module.exports.__wbg_serverresponse_new = function(arg0) { | ||
@@ -299,4 +299,4 @@ var ret = ServerResponse.__wrap(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); | ||
@@ -363,4 +363,4 @@ }; | ||
module.exports.__wbindgen_closure_wrapper819 = function(arg0, arg1, arg2) { | ||
var ret = makeMutClosure(arg0, arg1, 167, __wbg_adapter_16); | ||
module.exports.__wbindgen_closure_wrapper824 = function(arg0, arg1, arg2) { | ||
var ret = makeMutClosure(arg0, arg1, 166, __wbg_adapter_16); | ||
return addHeapObject(ret); | ||
@@ -367,0 +367,0 @@ }; |
@@ -7,3 +7,3 @@ { | ||
"description": "LSP support for the flux language", | ||
"version": "0.5.8", | ||
"version": "0.5.9", | ||
"license": "MIT", | ||
@@ -10,0 +10,0 @@ "repository": { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 1 instance in 1 package
3431334
0