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 | před 5 roky | |
---|---|---|
debian | před 5 roky | |
tests | před 6 roky | |
.gitignore | před 11 roky | |
.npmignore | před 10 roky | |
.travis.yml | před 9 roky | |
Makefile | před 11 roky | |
README.md | před 10 roky | |
esquery.js | před 6 roky | |
grammar.pegjs | před 7 roky | |
license.txt | před 11 roky | |
package.json | před 6 roky | |
parser.js | před 7 roky | |
testRunner.html | před 11 roky |
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