Lines Matching refs:TextNode
6810 class TextNode { class
6923 TextNode, property
6943 return new mathMLTree.TextNode(text);
7067 if (child instanceof TextNode && child.text === '.') {
7074 …if (lastChild instanceof TextNode && lastChild.text === '\u0338' && (group.type === 'mo' || group.…
7077 if (child instanceof TextNode && child.text.length > 0) {
7140 …const annotation = new mathMLTree.MathNode("annotation", [new mathMLTree.TextNode(texExpression)]);
7254 …const node = new mathMLTree.MathNode("mo", [new mathMLTree.TextNode(stretchyCodePoint[label.substr…
10816 …const leftOp = new mathMLTree.MathNode("mo", [new mathMLTree.TextNode(group.leftDelim.replace("\\"…
10824 …const rightOp = new mathMLTree.MathNode("mo", [new mathMLTree.TextNode(group.rightDelim.replace("\…
12001 …node = new MathNode("mi", [new TextNode(group.name.slice(1))]); // Append an <mo>⁡</…
12257 if (node.children.length === 1 && child instanceof mathMLTree.TextNode) {
12275 // Write a single TextNode instead of multiple nested tags.
12277 expression = [new mathMLTree.TextNode(word)];
12380 const operator = new mathMLTree.MathNode("mo", [new mathMLTree.TextNode("\u203e")]);
13337 node = new mathMLTree.MathNode("mtext", [new mathMLTree.TextNode("\u00a0")]);
13487 const operator = new mathMLTree.MathNode("mo", [new mathMLTree.TextNode("\u203e")]);
13532 const text = new mathMLTree.TextNode(makeVerb(group));