Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

jsstana

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jsstana

s-expression match patterns for Mozilla Parser AST

  • 0.0.9
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.9K
decreased by-52.45%
Maintainers
1
Weekly downloads
 
Created
Source

jsstana Build Status

s-expression match patterns for Mozilla Parser AST

Synopsis

var jsstana = require("jsstana");
var esprima = require("esprima");

var contents = // ...
var syntax = esprima.parse(syntax);

jsstana.traverse(syntax, function (node) {
    jsstana.traverse(syntax, function (node) {
     var m = jsstana.match("(call alert ?argument)", node);
  if (m) {
    console.log("alert called with argument", m.argument);
  }
});

jsgrep

The jsgrep example utility is provided

# find assertArguments calls with 4 arguments
% jsgrep '(call assertArguments ? ? ? ?)' lib
jsstana.js:224:   assertArguments("true/false/null/infinity/nan/undefined", 0, arguments, 1);
jsstana.js:255:   assertArguments("literal", 1, arguments, 1);
jsstana.js:485:   assertArguments("member/property/subscript", 2, arguments, 1);

Documentation

Pattern syntax

(not pattern)

Matches when pattern doesn't match.

(or pattern1 pattern2...)

Matches if any pattern matches, returns first match.

(and pattern1 pattern2...)

Matches if all pattern matches, returns combinedMatch

(null-node)

Matches undefined node.

(return value)

Matches ReturnStatement.

(literal value)

Matches Literal.

There are some additional version:

  • (string value) - string values
  • (number value) - number values
  • (bool value) - boolean values
  • (regexp value) - regular expressions
  • (true) - matches true
  • (false) - matches false
  • (null) - matches null
  • (infinity) - matches Infinity
  • (nan) - matches NaN
  • (undefined) - matches undefined
(var name init)

Matches VariableDeclarator.

(call callee arg0...argn)

Matches CallExpression.

(call fun arg1 arg2) matches exact amount of arguments, for arbitrary arguments use (call fun . ?) or similar dotted list syntax.

(expression expr)

Matches expression statement, ExpressionStatement.

(binary op lhs rhs)

Matches BinaryExpression.

Also shorthand syntax is supported, (+ a b) is the same as (binary + a b).

(unary op value)

Matches UnaryExpression.

Also shorthand version works for ! and ~: (~ ?foo) is the same as (unary ~ ?foo).

(update op value)

Matches UpdateExpression.

You might want to use postfix and prefix though.

(member object property)

Matches MemberExpression.

  • (property object property) matches non computed expressions, i.e. foo.bar.
  • (subscript object property) matches computed expressions i.e. foo[bar].
(lookup var.name)

Helper macro for nested variable access. (lookup foo.bar.baz) is equivalent to (property (property foo bar) baz).

The foo.bar.baz will work as (lookup foo.bar.baz) as well.

(throw ex)

Matches ThrowStatement.

(ternary test con alt)

Matches ConditionalExpression.

match(pattern, node)

Match node against pattern. If pattern matches returns an object with match captures. Otherwise returns undefined.

This function is autocurried ie. when one argument is passed, returns function node -> matchresult.

This function is also memoized on the pattern, ie each pattern is compiled only once.

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Use grunt mochacov to generate coverage report with blanket, or istanbul cover grunt simplemocha to do coverage with istanbul.

Release History

  • 0.0.9 Boolean patterns
  • 0.0.8 Even more rands
    • unary and update expressions
    • drop literal- prefix (eg plain string now)
    • shorthand binary op syntax (+ a b)
    • shorthand lookup syntax
  • 0.0.7 jsgrep, third try
  • 0.0.6 jsgrep, second try
  • 0.0.5 jsgrep
    • also new expression
  • 0.0.4 Binary and throw
  • 0.0.3 More rands
    • call dotted syntax
    • literals
    • expr - expression statement
    • use grunt-literate to generate README.md
  • 0.0.2 Dev setup
  • 0.0.1 Preview release

License

Copyright (c) 2013 Oleg Grenrus. Licensed under the BSD3 license.

FAQs

Package last updated on 31 Oct 2013

Did you know?

Socket

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.

Install

Related posts

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