Interface | Description |
---|---|
NodePattern |
Interface for lightweight AST patterns.
|
Class | Description |
---|---|
Alt |
Pattern to match one of two alternatives.
|
AnyNode |
A node pattern that matches any AST node.
|
NodeOfKind |
A node pattern that matches an AST node of a certain kind; additionally, the node's children
have to match the pattern's child patterns.
|
SomeConstant |
A node pattern matching any constant.
|
SubtreeOfKind |
A node pattern matching a node of a given kind, without regard to its children.
|