From 4940008024305cd85431cc40b6026fa2a341b24c Mon Sep 17 00:00:00 2001 From: Martin Aeschlimann Date: Fri, 11 Dec 2015 11:04:50 +0100 Subject: [PATCH] [json] refactor intellisense participants to not depend on schema - fix --- src/vs/languages/json/common/jsonIntellisense.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/languages/json/common/jsonIntellisense.ts b/src/vs/languages/json/common/jsonIntellisense.ts index 96e60b4042d..46a9957a4e2 100644 --- a/src/vs/languages/json/common/jsonIntellisense.ts +++ b/src/vs/languages/json/common/jsonIntellisense.ts @@ -114,7 +114,7 @@ export class JSONIntellisense { this.contributions.forEach((contribution) => { var collectPromise = contribution.collectPropertySuggestions(resource, location, currentWord, addValue, isLast, collector); if (collectPromise) { - collectionPromises.push(); + collectionPromises.push(collectPromise); } }); }