JSONPath Tools / @jsonpath-tools/jsonpath / Selector
Class: abstract
Selector
Selector.
Extends
Extended by
Constructors
new Selector()
new Selector(children): Selector
Parameters
children
(null
| SyntaxTree
)[]
Children.
Returns
Selector
Inherited from
Properties
_parent
_parent: null | SyntaxTreeNode = null;
Internal
Inherited from
children
readonly children: SyntaxTree[];
Children.
Inherited from
length
readonly length: number;
Length in the text.
Inherited from
position
readonly position: number;
Position in the text.
Inherited from
type
abstract readonly type: SyntaxTreeType;
Type.
Inherited from
Accessors
parent
Get Signature
get parent(): null | SyntaxTreeNode
Parent or null
when no parent is assigned.
Returns
null
| SyntaxTreeNode
Inherited from
skippedTextBefore
Get Signature
get skippedTextBefore(): string
Text that was skipped during parsing.
Returns
string
Text that was skipped during parsing.
Inherited from
SyntaxTreeNode
.skippedTextBefore
textRange
Get Signature
get textRange(): TextRange
Range in the text.
Returns
Inherited from
textRangeWithoutSkipped
Get Signature
get textRangeWithoutSkipped(): TextRange
Range in the text excluding skipped text before.
Returns
Inherited from
SyntaxTreeNode
.textRangeWithoutSkipped
Methods
forEach()
forEach(action): void
Executes the given action for this and all descendant trees in a pre-order tree traversal.
Parameters
action
(tree
) => boolean
| void
Action.
Returns
void
Inherited from
getAtPosition()
getAtPosition(characterPosition): null | SyntaxTree
Returns the innermost subtree that spans the given character position or null
when the position is outside of a range of the current tree.
Parameters
characterPosition
number
Position (character index).
Returns
null
| SyntaxTree
Inherited from
getContainingAtPosition()
getContainingAtPosition(caretPosition): null | SyntaxTree
Returns the innermost subtree that fully contains the given caret position (not just touches) or null
when the position is not contained in a range of the current tree.
Parameters
caretPosition
number
Position (caret position index).
Returns
null
| SyntaxTree
Inherited from
SyntaxTreeNode
.getContainingAtPosition
getTouchingAtPosition()
getTouchingAtPosition(caretPosition): SyntaxTree[]
Returns all innermost subtrees that touch the given caret position.
Parameters
caretPosition
number
Position (caret position index).
Returns
Inherited from
SyntaxTreeNode
.getTouchingAtPosition
select()
abstract select(
input,
output,
queryContext): void
Selects nodes from the input node to the output array.
Parameters
input
Input node.
output
Output nodes.
queryContext
Query context.
Returns
void