Home
last modified time | relevance | path

Searched refs:nodeIsPresent (Results 1 – 8 of 8) sorted by relevance

/third_party/typescript/src/compiler/transformers/
DtypeSerializer.ts129 : isFunctionLike(node) && nodeIsPresent((node as FunctionLikeDeclaration).body)
/third_party/typescript/src/services/
Dutilities.ts665 return nodeIsPresent((n as TemplateSpan).literal);
669 return nodeIsPresent((n as ExportDeclaration | ImportDeclaration).moduleSpecifier);
/third_party/typescript/src/compiler/
Dutilities.ts366 export function nodeIsPresent(node: Node | undefined): boolean { function
4526 …ration & { body: FunctionBody } => isConstructorDeclaration(member) && nodeIsPresent(member.body));
5794 if (nodeIsPresent(child)) lastChild = child;
5799 if (nodeIsPresent(children[i])) {
Dbinder.ts684 …ags.Unreachable) && containerFlags & ContainerFlags.IsFunctionLike && nodeIsPresent((node as Funct…
Dchecker.ts4390 …if (member.kind === SyntaxKind.Constructor && nodeIsPresent((member as ConstructorDeclaration).bod…
31517 …ind(failedSignatureDeclarations, d => isFunctionLikeDeclaration(d) && nodeIsPresent(d.body)) : und…
36144 if (!(func.kind === SyntaxKind.Constructor && nodeIsPresent(func.body))) {
36737 …if (!(node.flags & NodeFlags.Ambient) && nodeIsPresent(node.body) && (node.flags & NodeFlags.HasIm…
37218 if (nodeIsPresent((subsequentNode as FunctionLikeDeclaration).body)) {
37271 const bodyIsPresent = nodeIsPresent((node as FunctionLikeDeclaration).body);
38359 if (functionFlags & FunctionFlags.Generator && nodeIsPresent(body)) {
41844 …(declaration.kind === SyntaxKind.FunctionDeclaration && nodeIsPresent((declaration as FunctionLike…
43300 …if (isConstructorDeclaration(element) && nodeIsPresent(element.body) || isPropertyDeclaration(elem…
44219 if (nodeIsPresent((node as FunctionLikeDeclaration).body)) {
[all …]
Dparser.ts5267 nodeIsPresent(colonToken)
/third_party/typescript/lib/
DtypingsInstaller.js14860 function nodeIsPresent(node) { function
14863 ts.nodeIsPresent = nodeIsPresent;
18796 …rs, function (member) { return ts.isConstructorDeclaration(member) && nodeIsPresent(member.body); …
19993 if (nodeIsPresent(child))
19998 if (nodeIsPresent(children[i])) {
36023 …; }), colonToken = parseExpectedToken(58 /* SyntaxKind.ColonToken */), ts.nodeIsPresent(colonToken)
47680 …ble */) && containerFlags & 8 /* ContainerFlags.IsFunctionLike */ && ts.nodeIsPresent(node.body)) {
54470 … if (member.kind === 174 /* SyntaxKind.Constructor */ && ts.nodeIsPresent(member.body)) {
79539 …arations, function (d) { return ts.isFunctionLikeDeclaration(d) && ts.nodeIsPresent(d.body); }) : …
83738 … if (!(func.kind === 174 /* SyntaxKind.Constructor */ && ts.nodeIsPresent(func.body))) {
[all …]
Dtsc.js11355 function nodeIsPresent(node) { function
11358 ts.nodeIsPresent = nodeIsPresent;
14767 …rs, function (member) { return ts.isConstructorDeclaration(member) && nodeIsPresent(member.body); …
15791 if (nodeIsPresent(child))
15795 if (nodeIsPresent(children[i])) {
29163 …entExpressionOrHigher(false); }), colonToken = parseExpectedToken(58), ts.nodeIsPresent(colonToken)
39214 if (!(currentFlow.flags & 1) && containerFlags & 8 && ts.nodeIsPresent(node.body)) {
45033 if (member.kind === 174 && ts.nodeIsPresent(member.body)) {
66728 …arations, function (d) { return ts.isFunctionLikeDeclaration(d) && ts.nodeIsPresent(d.body); }) : …
70514 if (!(func.kind === 174 && ts.nodeIsPresent(func.body))) {
[all …]