Renamed keywords array

This commit is contained in:
arookas 2016-02-22 16:34:23 -05:00
parent a1d3cd3d49
commit 38a2a8a6d4

View file

@ -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);
}
}
}