MCPcopy Index your code
hub / github.com/tinymce/tinymce / walk

Method walk

modules/tinymce/src/core/main/ts/api/html/Node.ts:562–564  ·  view source on GitHub ↗

* Walks to the next or previous node and returns that node or null if it wasn't found. * * @method walk * @param {Boolean} prev Optional previous node state defaults to false. * @return {tinymce.html.Node} Node that is next to or previous of the current node.

(prev?: boolean)

Source from the content-addressed store, hash-verified

560 * @return {tinymce.html.Node} Node that is next to or previous of the current node.
561 */
562 public walk(prev?: boolean): AstNode | null | undefined {
563 return walk(this, null, prev);
564 }
565}
566
567export default AstNode;

Callers 15

testWalkingFunction · 0.80
traverseFunction · 0.80
getAllDescendantsFunction · 0.80
annotateFunction · 0.80
walkFunction · 0.80
walkTreeFunction · 0.80
markFragmentElementsFunction · 0.80
findMarkerNodeFunction · 0.80
insertHtmlAtCaretFunction · 0.80
applyRngStyleFunction · 0.80
removeRngStyleFunction · 0.80

Calls 1

walkFunction · 0.70

Tested by

no test coverage detected