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 | пре 5 година | |
---|---|---|
debian | пре 5 година | |
tests | пре 6 година | |
.gitignore | пре 11 година | |
.npmignore | пре 10 година | |
.travis.yml | пре 9 година | |
Makefile | пре 11 година | |
README.md | пре 10 година | |
esquery.js | пре 6 година | |
grammar.pegjs | пре 7 година | |
license.txt | пре 11 година | |
package.json | пре 6 година | |
parser.js | пре 7 година | |
testRunner.html | пре 11 година |
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