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