Socket
Socket
Sign inDemoInstall

@influxdata/flux-lsp-node

Package Overview
Dependencies
Maintainers
21
Versions
111
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@influxdata/flux-lsp-node - npm Package Compare versions

Comparing version 0.8.9 to 0.8.10

77

flux-lsp-node.js

@@ -6,2 +6,22 @@ let imports = {};

const heap = new Array(32).fill(undefined);
heap.push(undefined, null, true, false);
function getObject(idx) { return heap[idx]; }
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 cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });

@@ -23,8 +43,2 @@

const heap = new Array(32).fill(undefined);
heap.push(undefined, null, true, false);
let heap_next = heap.length;
function addHeapObject(obj) {

@@ -39,16 +53,2 @@ if (heap_next === heap.length) heap.push(heap.length + 1);

function getObject(idx) { return heap[idx]; }
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;

@@ -267,3 +267,3 @@

}
function __wbg_adapter_32(arg0, arg1, arg2, arg3) {
function __wbg_adapter_26(arg0, arg1, arg2, arg3) {
wasm.wasm_bindgen__convert__closures__invoke2_mut__hf96040080d2405e1(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));

@@ -336,2 +336,6 @@ }

module.exports.__wbindgen_object_drop_ref = function(arg0) {
takeObject(arg0);
};
module.exports.__wbindgen_string_new = function(arg0, arg1) {

@@ -342,6 +346,2 @@ var ret = getStringFromWasm0(arg0, arg1);

module.exports.__wbindgen_object_drop_ref = function(arg0) {
takeObject(arg0);
};
module.exports.__wbindgen_json_parse = function(arg0, arg1) {

@@ -361,23 +361,2 @@ var ret = JSON.parse(getStringFromWasm0(arg0, arg1));

module.exports.__wbg_new_693216e109162396 = function() {
var ret = new Error();
return addHeapObject(ret);
};
module.exports.__wbg_stack_0ddaca5d1abfb52f = function(arg0, arg1) {
var ret = getObject(arg1).stack;
var ptr0 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
var len0 = WASM_VECTOR_LEN;
getInt32Memory0()[arg0 / 4 + 1] = len0;
getInt32Memory0()[arg0 / 4 + 0] = ptr0;
};
module.exports.__wbg_error_09919627ac0992f5 = function(arg0, arg1) {
try {
console.error(getStringFromWasm0(arg0, arg1));
} finally {
wasm.__wbindgen_free(arg0, arg1);
}
};
module.exports.__wbindgen_cb_drop = function(arg0) {

@@ -405,3 +384,3 @@ const obj = takeObject(arg0).original;

try {
return __wbg_adapter_32(a, state0.b, arg0, arg1);
return __wbg_adapter_26(a, state0.b, arg0, arg1);
} finally {

@@ -440,4 +419,4 @@ state0.a = a;

module.exports.__wbindgen_closure_wrapper6996 = function(arg0, arg1, arg2) {
var ret = makeMutClosure(arg0, arg1, 1270, __wbg_adapter_16);
module.exports.__wbindgen_closure_wrapper9338 = function(arg0, arg1, arg2) {
var ret = makeMutClosure(arg0, arg1, 1589, __wbg_adapter_16);
return addHeapObject(ret);

@@ -444,0 +423,0 @@ };

@@ -7,3 +7,3 @@ {

"description": "LSP support for the flux language",
"version": "0.8.9",
"version": "0.8.10",
"license": "MIT",

@@ -10,0 +10,0 @@ "repository": {

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc