* Determines whether to emit a function-like declaration. We should not emit the * declaration if it does not have a body. * * @param node The declaration node.
(node)
| 93140 | * @param node The declaration node. |
| 93141 | */ |
| 93142 | function shouldEmitFunctionLikeDeclaration(node) { |
| 93143 | return !ts.nodeIsMissing(node.body); |
| 93144 | } |
| 93145 | function visitPropertyDeclaration(node) { |
| 93146 | if (node.flags & 16777216 /* NodeFlags.Ambient */ || ts.hasSyntacticModifier(node, 128 /* ModifierFlags.Abstract */)) { |
| 93147 | return undefined; |
no outgoing calls
no test coverage detected
searching dependent graphs…