Product
Introducing Java Support in Socket
We're excited to announce that Socket now supports the Java programming language.
is-reference
Advanced tools
Utility for determining whether an AST node is a reference.
foo
is a reference in these cases:
console.log(foo);
var foo;
function foo() {}
function bar(foo) {}
export { foo as x };
foo
is not a reference in these cases:
var obj = { foo: 1 };
console.log(obj.foo);
export { x as foo };
In all cases, foo
is an Identifier
node, but the two kinds must be treated differently for the purposes of scope analysis etc. (The examples are non-exhaustive.)
npm install is-reference
Example using Acorn and estree-walker:
import { parse } from 'acorn';
import { walk } from 'estree-walker';
import is_reference from 'is-reference';
const identifiers = [];
const references = [];
const ast = parse(`var a = b.c;`);
walk(ast, {
enter(node, parent) {
if (node.type === 'Identifier') identifiers.push(node);
if (is_reference(node, parent)) references.push(node);
}
});
identifiers.forEach(node => console.log(node.name)); // a, b, c
references.forEach(node => console.log(node.name)); // a, b
MIT
3.0.2
dts-buddy
FAQs
Determine whether an AST node is a reference
The npm package is-reference receives a total of 5,733,555 weekly downloads. As such, is-reference popularity was classified as popular.
We found that is-reference demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
We're excited to announce that Socket now supports the Java programming language.
Security News
Socket detected a malicious Python package impersonating a popular browser cookie library to steal passwords, screenshots, webcam images, and Discord tokens.
Security News
Deno 2.0 is now available with enhanced package management, full Node.js and npm compatibility, improved performance, and support for major JavaScript frameworks.