ESQuery is a library for querying the AST output by Esprima for patterns of syntax using a CSS style selector system. (Evacuated from Microsoft Github)
anonymous 27834d6169 typo | hace 5 años | |
---|---|---|
debian | hace 5 años | |
tests | hace 6 años | |
.gitignore | hace 11 años | |
.npmignore | hace 10 años | |
.travis.yml | hace 9 años | |
Makefile | hace 11 años | |
README.md | hace 10 años | |
esquery.js | hace 6 años | |
grammar.pegjs | hace 7 años | |
license.txt | hace 11 años | |
package.json | hace 6 años | |
parser.js | hace 7 años | |
testRunner.html | hace 11 años |
ESQuery is a library for querying the AST output by Esprima for patterns of syntax using a CSS style selector system. Check out the demo:
The following selectors are supported:
ForStatement
*
[attr]
[attr="foo"]
or [attr=123]
[attr=/foo.*/]
[attr!="foo"]
, [attr>2]
, [attr<3]
, [attr>=2]
, or [attr<=3]
[attr.level2="foo"]
FunctionDeclaration > Identifier.id
:first-child
or :last-child
:nth-child(2)
:nth-last-child(1)
ancestor descendant
parent > child
node ~ sibling
node + adjacent
:not(ForStatement)
:matches([attr] > :first-child, :last-child)
!IfStatement > [name="foo"]
:statement
, :expression
, :declaration
, :function
, or :pattern