Skip to content

JSONPath Tools / @jsonpath-tools/jsonpath / SyntaxTreeNode

Class: abstract SyntaxTreeNode

Nonterminal symbols of the grammar.

Extends

Extended by

Constructors

new SyntaxTreeNode()

ts
new SyntaxTreeNode(children): SyntaxTreeNode

Parameters

children

(null | SyntaxTree)[]

Children.

Returns

SyntaxTreeNode

Overrides

SyntaxTree.constructor

Properties

_parent

ts
_parent: null | SyntaxTreeNode = null;

Internal

Inherited from

SyntaxTree._parent


children

ts
readonly children: SyntaxTree[];

Children.


length

ts
readonly length: number;

Length in the text.

Inherited from

SyntaxTree.length


position

ts
readonly position: number;

Position in the text.

Inherited from

SyntaxTree.position


type

ts
abstract readonly type: SyntaxTreeType;

Type.

Inherited from

SyntaxTree.type

Accessors

parent

Get Signature

ts
get parent(): null | SyntaxTreeNode

Parent or null when no parent is assigned.

Returns

null | SyntaxTreeNode

Inherited from

SyntaxTree.parent


skippedTextBefore

Get Signature

ts
get skippedTextBefore(): string

Text that was skipped during parsing.

Returns

string

Text that was skipped during parsing.

Overrides

SyntaxTree.skippedTextBefore


textRange

Get Signature

ts
get textRange(): TextRange

Range in the text.

Returns

TextRange

Inherited from

SyntaxTree.textRange


textRangeWithoutSkipped

Get Signature

ts
get textRangeWithoutSkipped(): TextRange

Range in the text excluding skipped text before.

Returns

TextRange

Inherited from

SyntaxTree.textRangeWithoutSkipped

Methods

forEach()

ts
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

Overrides

SyntaxTree.forEach


getAtPosition()

ts
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

SyntaxTree.getAtPosition


getContainingAtPosition()

ts
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

SyntaxTree.getContainingAtPosition


getTouchingAtPosition()

ts
getTouchingAtPosition(caretPosition): SyntaxTree[]

Returns all innermost subtrees that touch the given caret position.

Parameters

caretPosition

number

Position (caret position index).

Returns

SyntaxTree[]

Inherited from

SyntaxTree.getTouchingAtPosition