(node)
| 132720 | return { modifiers: modifiers, span: span }; |
| 132721 | } |
| 132722 | function isModifierLike(node) { |
| 132723 | if (ts.isModifier(node)) { |
| 132724 | return node.kind; |
| 132725 | } |
| 132726 | if (ts.isIdentifier(node) && node.originalKeywordKind && ts.isModifierKind(node.originalKeywordKind)) { |
| 132727 | return node.originalKeywordKind; |
| 132728 | } |
| 132729 | return undefined; |
| 132730 | } |
| 132731 | function getEntryForObjectLiteralMethodCompletion(symbol, name, enclosingDeclaration, program, host, options, preferences, formatContext) { |
| 132732 | var isSnippet = preferences.includeCompletionsWithSnippetText || undefined; |
| 132733 | var insertText = name; |
no outgoing calls
no test coverage detected