From e82e821acf6c65fecb544f08a9d0f850ca2a320f Mon Sep 17 00:00:00 2001 From: skacurt Date: Thu, 17 Dec 2020 18:20:34 +0300 Subject: [PATCH] add missing syntax error mapping entry (#217) --- ClearScript/Windows/VBScriptEngine.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ClearScript/Windows/VBScriptEngine.cs b/ClearScript/Windows/VBScriptEngine.cs index 1191055d..042cf86a 100644 --- a/ClearScript/Windows/VBScriptEngine.cs +++ b/ClearScript/Windows/VBScriptEngine.cs @@ -74,6 +74,7 @@ namespace Microsoft.ClearScript.Windows { 1057, "'Default' specification must also specify 'Public'" }, { 1005, "Expected '('" }, { 1006, "Expected ')'" }, + { 1007, "Expected ']'" }, // missing in the online documentation { 1011, "Expected '='" }, { 1021, "Expected 'Case'" }, { 1047, "Expected 'Class'" },