Home
last modified time | relevance | path

Searched refs:nodeText (Results 1 – 5 of 5) sorted by relevance

/third_party/typescript/src/services/
DnavigationBar.ts85 function nodeText(node: Node): string { function
474 const name = declName && nodeText(declName);
715 : isElementAccessExpression(name) ? `[${nodeText(name.argumentExpression)}]`
716 : nodeText(name);
923 return nodeText(parent.left).replace(whiteSpaceRegex, "");
927 return nodeText(parent.name);
/third_party/typescript/src/compiler/
Dbinder.ts2484 const nodeText = getSourceTextOfNodeFromSourceFile(file, node.expression); constant
2488 return nodeText === '"use strict"' || nodeText === "'use strict'";
Dchecker.ts29432 const nodeText = isEntityNameExpression(node) ? entityNameToString(node) : undefined; constant
29437 if (nodeText !== undefined && nodeText.length < 100) {
29438 if (isIdentifier(node) && nodeText === "undefined") {
29446 nodeText
29473 const nodeText = entityNameToString(node); constant
29474 if (nodeText.length < 100) {
29475 error(node, Diagnostics._0_is_of_type_unknown, nodeText);
29499 const nodeText = entityNameToString(node); constant
29500 if (isIdentifier(node) && nodeText === "undefined") {
29501 error(node, Diagnostics.The_value_0_cannot_be_used_here, nodeText);
[all …]
/third_party/typescript/lib/
DtypingsInstaller.js49324 var nodeText = ts.getSourceTextOfNodeFromSourceFile(file, node.expression);
49327 return nodeText === '"use strict"' || nodeText === "'use strict'";
77661 … var nodeText = ts.isEntityNameExpression(node) ? ts.entityNameToString(node) : undefined;
77666 if (nodeText !== undefined && nodeText.length < 100) {
77667 if (ts.isIdentifier(node) && nodeText === "undefined") {
77674 ts.Diagnostics._0_is_possibly_null, nodeText);
77692 var nodeText = ts.entityNameToString(node);
77693 if (nodeText.length < 100) {
77694 error(node, ts.Diagnostics._0_is_of_type_unknown, nodeText);
77716 var nodeText = ts.entityNameToString(node);
[all …]
Dtsc.js40682 var nodeText = ts.getSourceTextOfNodeFromSourceFile(file, node.expression);
40683 return nodeText === '"use strict"' || nodeText === "'use strict'";
65116 … var nodeText = ts.isEntityNameExpression(node) ? ts.entityNameToString(node) : undefined;
65121 if (nodeText !== undefined && nodeText.length < 100) {
65122 if (ts.isIdentifier(node) && nodeText === "undefined") {
65129 ts.Diagnostics._0_is_possibly_null, nodeText);
65147 var nodeText = ts.entityNameToString(node);
65148 if (nodeText.length < 100) {
65149 error(node, ts.Diagnostics._0_is_of_type_unknown, nodeText);
65171 var nodeText = ts.entityNameToString(node);
[all …]