From 38a2a8a6d4c364deb5b70cd4a87c6655a9b5c2bf Mon Sep 17 00:00:00 2001 From: arookas Date: Mon, 22 Feb 2016 16:34:23 -0500 Subject: [PATCH] Renamed keywords array --- ssc/parser.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ssc/parser.cs b/ssc/parser.cs index 1b50afd..6cf5f86 100644 --- a/ssc/parser.cs +++ b/ssc/parser.cs @@ -3,7 +3,7 @@ using System.Linq; namespace arookas { class sunParser { - static string[] keywords = { + static string[] sKeywords = { "import", "builtin", "function", "var", "const", "local", "if", "while", "do", "for", @@ -235,7 +235,7 @@ namespace arookas { } public static bool IsKeyword(string name) { - return keywords.Contains(name); + return sKeywords.Contains(name); } } }