(node)
| 135313 | } |
| 135314 | // TODO: GH#19856 Would like to return `node is Node & { parent: (ClassElement | TypeElement) & { parent: ObjectTypeDeclaration } }` but then compilation takes > 10 minutes |
| 135315 | function isFromObjectTypeDeclaration(node) { |
| 135316 | return node.parent && ts.isClassOrTypeElement(node.parent) && ts.isObjectTypeDeclaration(node.parent.parent); |
| 135317 | } |
| 135318 | function isValidTrigger(sourceFile, triggerCharacter, contextToken, position) { |
| 135319 | switch (triggerCharacter) { |
| 135320 | case ".": |
no outgoing calls
no test coverage detected