Socket
Socket
Sign inDemoInstall

@influxdata/flux-lsp-node

Package Overview
Dependencies
Maintainers
22
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.15 to 0.8.16

37

flux-lsp-node.d.ts

@@ -25,2 +25,39 @@ /* tslint:disable */

/**
* Flux provides an API for transforming, formatting, and checking syntax of flux source code.
*/
export class Flux {
free(): void;
/**
* Create a new Flux object from a raw flux string.
* @param {string} script
*/
constructor(script: string);
/**
* @param {any} obj
* @returns {Flux}
*/
static from_ast(obj: any): Flux;
/**
* Get the ast from a Flux instance
* @returns {any}
*/
ast(): any;
/**
* Format the flux.
*
* In the event that the flux is invalid syntax, an Err will be returned,
* which will translate into a JavaScript exception being thrown.
* @returns {string}
*/
format(): string;
/**
* Check that the flux is valid.
*
* This function does a semantic check, which will check types and builtin
* function signatures, which can't be checked via a base AST check.
* @returns {boolean}
*/
is_valid(): boolean;
}
/**
* Lsp is the core lsp server interface.

@@ -27,0 +64,0 @@ */

145

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,4 +53,2 @@ if (heap_next === heap.length) heap.push(heap.length + 1);

function getObject(idx) { return heap[idx]; }
let WASM_VECTOR_LEN = 0;

@@ -105,14 +117,2 @@

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;
}
function debugString(val) {

@@ -268,3 +268,3 @@ // primitive types

}
function __wbg_adapter_26(arg0, arg1, arg2, arg3) {
function __wbg_adapter_31(arg0, arg1, arg2, arg3) {
wasm.wasm_bindgen__convert__closures__invoke2_mut__h26d103eec90721bb(arg0, arg1, addHeapObject(arg2), addHeapObject(arg3));

@@ -274,2 +274,91 @@ }

/**
* Flux provides an API for transforming, formatting, and checking syntax of flux source code.
*/
class Flux {
static __wrap(ptr) {
const obj = Object.create(Flux.prototype);
obj.ptr = ptr;
return obj;
}
__destroy_into_raw() {
const ptr = this.ptr;
this.ptr = 0;
return ptr;
}
free() {
const ptr = this.__destroy_into_raw();
wasm.__wbg_flux_free(ptr);
}
/**
* Create a new Flux object from a raw flux string.
* @param {string} script
*/
constructor(script) {
const ptr0 = passStringToWasm0(script, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
const len0 = WASM_VECTOR_LEN;
const ret = wasm.flux_new(ptr0, len0);
return Flux.__wrap(ret);
}
/**
* @param {any} obj
* @returns {Flux}
*/
static from_ast(obj) {
const ret = wasm.flux_from_ast(addHeapObject(obj));
return Flux.__wrap(ret);
}
/**
* Get the ast from a Flux instance
* @returns {any}
*/
ast() {
const ret = wasm.flux_ast(this.ptr);
return takeObject(ret);
}
/**
* Format the flux.
*
* In the event that the flux is invalid syntax, an Err will be returned,
* which will translate into a JavaScript exception being thrown.
* @returns {string}
*/
format() {
try {
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
wasm.flux_format(retptr, this.ptr);
var r0 = getInt32Memory0()[retptr / 4 + 0];
var r1 = getInt32Memory0()[retptr / 4 + 1];
var r2 = getInt32Memory0()[retptr / 4 + 2];
var r3 = getInt32Memory0()[retptr / 4 + 3];
var ptr0 = r0;
var len0 = r1;
if (r3) {
ptr0 = 0; len0 = 0;
throw takeObject(r2);
}
return getStringFromWasm0(ptr0, len0);
} finally {
wasm.__wbindgen_add_to_stack_pointer(16);
wasm.__wbindgen_free(ptr0, len0);
}
}
/**
* Check that the flux is valid.
*
* This function does a semantic check, which will check types and builtin
* function signatures, which can't be checked via a base AST check.
* @returns {boolean}
*/
is_valid() {
const ret = wasm.flux_is_valid(this.ptr);
return ret !== 0;
}
}
module.exports.Flux = Flux;
/**
* Lsp is the core lsp server interface.

@@ -338,2 +427,6 @@ */

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

@@ -353,6 +446,2 @@ const ret = JSON.parse(getStringFromWasm0(arg0, arg1));

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

@@ -385,3 +474,3 @@ const ret = getStringFromWasm0(arg0, arg1);

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

@@ -420,4 +509,4 @@ state0.a = a;

module.exports.__wbindgen_closure_wrapper10187 = function(arg0, arg1, arg2) {
const ret = makeMutClosure(arg0, arg1, 1529, __wbg_adapter_16);
module.exports.__wbindgen_closure_wrapper10810 = function(arg0, arg1, arg2) {
const ret = makeMutClosure(arg0, arg1, 1568, __wbg_adapter_16);
return addHeapObject(ret);

@@ -424,0 +513,0 @@ };

2

package.json

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

"description": "LSP support for the flux language",
"version": "0.8.15",
"version": "0.8.16",
"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