Home
last modified time | relevance | path

Searched refs:getEffectiveTypeAnnotationNode (Results 1 – 7 of 7) sorted by relevance

/third_party/typescript/src/services/
DinlayHints.ts128 const effectiveTypeAnnotation = getEffectiveTypeAnnotationNode(decl);
279 const effectiveTypeAnnotation = getEffectiveTypeAnnotationNode(param);
Dcompletions.ts3231 …let canGetType = hasInitializer(rootDeclaration) || !!getEffectiveTypeAnnotationNode(rootDeclarati…
/third_party/typescript/src/services/codefixes/
DfixStrictClassInitialization.ts55 const type = getEffectiveTypeAnnotationNode(token.parent);
/third_party/typescript/src/compiler/
Dchecker.ts6848 …turn symbol.declarations && find(symbol.declarations, s => !!getEffectiveTypeAnnotationNode(s) && …
6864 … const existing = getEffectiveTypeAnnotationNode(declWithExistingAnnotation)!;
9154 if (getEffectiveTypeAnnotationNode(walkUpBindingElementsAndPatterns(declaration))) {
9334 …return declaration && isPropertyDeclaration(declaration) && !getEffectiveTypeAnnotationNode(declar…
9510 const typeNode = getEffectiveTypeAnnotationNode(expression.parent);
9521 const typeNode = getEffectiveTypeAnnotationNode(symbol.parent.valueDeclaration);
9817 const typeNode = getEffectiveTypeAnnotationNode(node);
9863 const typeNode = getEffectiveTypeAnnotationNode(declaration);
9973 const accessorTypeAnnotation = getEffectiveTypeAnnotationNode(accessor);
10162 if (getEffectiveTypeAnnotationNode(declaration)) {
[all …]
Dutilities.ts4632 export function getEffectiveTypeAnnotationNode(node: Node): TypeNode | undefined { function
4668 return parameter && getEffectiveTypeAnnotationNode(parameter);
7589 if (some(node.parameters, p => !getEffectiveTypeAnnotationNode(p))) {
/third_party/typescript/lib/
DtypingsInstaller.js18898 function getEffectiveTypeAnnotationNode(node) { function
18906 ts.getEffectiveTypeAnnotationNode = getEffectiveTypeAnnotationNode;
18935 return parameter && getEffectiveTypeAnnotationNode(parameter);
21610 … if (ts.some(node.parameters, function (p) { return !getEffectiveTypeAnnotationNode(p); })) {
56711 …s && ts.find(symbol.declarations, function (s) { return !!ts.getEffectiveTypeAnnotationNode(s) && …
56725 … var existing = ts.getEffectiveTypeAnnotationNode(declWithExistingAnnotation);
58677 … if (ts.getEffectiveTypeAnnotationNode(ts.walkUpBindingElementsAndPatterns(declaration))) {
58838 … declaration && ts.isPropertyDeclaration(declaration) && !ts.getEffectiveTypeAnnotationNode(declar…
59010 var typeNode = ts.getEffectiveTypeAnnotationNode(expression.parent);
59021 var typeNode_2 = ts.getEffectiveTypeAnnotationNode(symbol.parent.valueDeclaration);
[all …]
Dtsc.js14861 function getEffectiveTypeAnnotationNode(node) { function
14869 ts.getEffectiveTypeAnnotationNode = getEffectiveTypeAnnotationNode;
14889 return parameter && getEffectiveTypeAnnotationNode(parameter);
17247 … if (ts.some(node.parameters, function (p) { return !getEffectiveTypeAnnotationNode(p); })) {
47071 …s && ts.find(symbol.declarations, function (s) { return !!ts.getEffectiveTypeAnnotationNode(s) && …
47080 … var existing = ts.getEffectiveTypeAnnotationNode(declWithExistingAnnotation);
48687 … if (ts.getEffectiveTypeAnnotationNode(ts.walkUpBindingElementsAndPatterns(declaration))) {
48816 … declaration && ts.isPropertyDeclaration(declaration) && !ts.getEffectiveTypeAnnotationNode(declar…
48981 var typeNode = ts.getEffectiveTypeAnnotationNode(expression.parent);
48992 var typeNode_2 = ts.getEffectiveTypeAnnotationNode(symbol.parent.valueDeclaration);
[all …]