From 1df5ec75221060c54256b18a14d7876cb6c504ac Mon Sep 17 00:00:00 2001 From: Jason Abbott Date: Tue, 24 Oct 2017 17:30:29 -0600 Subject: [PATCH] comment --- src/providers/parser.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/providers/parser.ts b/src/providers/parser.ts index f9d627b..bd9e87e 100644 --- a/src/providers/parser.ts +++ b/src/providers/parser.ts @@ -1,6 +1,9 @@ import { CompletionItem, CompletionItemKind } from "vscode"; import { find, MemberInfo } from "../grammar"; +/** + * Build `CompletionItem`s from `TypeInfo` and `MethodInfo` lists. + */ export async function completions(name:string):Promise { const info = await find(name); if (info && info.fields || info.methods) {