Lines Matching full:text
21 let text = ""
23 text = expr.head.rawText!;
25 text = expr.rawText!;
28 text = text.replace(/(\r?\n|\r)/gm, "\n");
29 pandaGen.loadAccumulatorString(expr, text);
33 let text = ""
35 text = expr.head.text;
37 text = expr.text;
40 if (text.indexOf("\\u{") != -1) {
41 text = eval("'" + text + "'");
42 text = unescape(text.replace(/\u/g, "%u"));
45 pandaGen.loadAccumulatorString(expr, text);
77 …AccumulatorString(span, span.literal.rawText === undefined ? span.literal.text : span.literal.rawT…
80 pandaGen.loadAccumulatorString(span, span.literal.text);