(p: PropertyDefinition, more?: Partial<CompletionItem>)
| 284 | } |
| 285 | |
| 286 | function propertyToCompletion(p: PropertyDefinition, more?: Partial<CompletionItem>): CompletionItem { |
| 287 | return { |
| 288 | label: p.property, |
| 289 | kind: CompletionItemKind.Property, |
| 290 | insertText: p.snippet, |
| 291 | labelDetails: p.shortDescription |
| 292 | ? { |
| 293 | description: p.shortDescription |
| 294 | } |
| 295 | : undefined, |
| 296 | documentation: p.longDescription |
| 297 | ? { |
| 298 | kind: 'markdown', |
| 299 | value: p.longDescription |
| 300 | } |
| 301 | : undefined, |
| 302 | insertTextFormat: InsertTextFormat.Snippet, |
| 303 | ...more |
| 304 | }; |
| 305 | } |
| 306 | function valueItemToCompletion(i: ParameterValueDefinition, more?: Partial<CompletionItem>): CompletionItem { |
| 307 | return { |
| 308 | label: i.name, |
no outgoing calls
no test coverage detected