()
| 133828 | return ts.isIdentifier(e) ? e : ts.isPropertyAccessExpression(e) ? getLeftMostName(e.expression) : undefined; |
| 133829 | } |
| 133830 | function tryGetGlobalSymbols() { |
| 133831 | var result = tryGetObjectTypeLiteralInTypeArgumentCompletionSymbols() |
| 133832 | || tryGetObjectLikeCompletionSymbols() |
| 133833 | || tryGetImportCompletionSymbols() |
| 133834 | || tryGetImportOrExportClauseCompletionSymbols() |
| 133835 | || tryGetLocalNamedExportCompletionSymbols() |
| 133836 | || tryGetConstructorCompletion() |
| 133837 | || tryGetClassLikeCompletionSymbols() |
| 133838 | || tryGetJsxCompletionSymbols() |
| 133839 | || (getGlobalCompletions(), 1 /* GlobalsSearch.Success */); |
| 133840 | return result === 1 /* GlobalsSearch.Success */; |
| 133841 | } |
| 133842 | function tryGetConstructorCompletion() { |
| 133843 | if (!tryGetConstructorLikeCompletionContainer(contextToken)) |
| 133844 | return 0 /* GlobalsSearch.Continue */; |
no test coverage detected