From 6fddb7859353d0944928ff543f9caff7c2b436e1 Mon Sep 17 00:00:00 2001 From: Alex Dima Date: Thu, 4 Aug 2016 16:43:41 +0200 Subject: [PATCH] Assign members! --- src/vs/editor/common/editorAction.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/vs/editor/common/editorAction.ts b/src/vs/editor/common/editorAction.ts index eb5431d1dda..60f4b39f66d 100644 --- a/src/vs/editor/common/editorAction.ts +++ b/src/vs/editor/common/editorAction.ts @@ -20,6 +20,7 @@ export abstract class AbstractInternalEditorAction { this.id = id; this.label = label; this.alias = alias; + this._editor = editor; } }