remove Roblox-specific globals from kSpecialGlobals

This commit is contained in:
LoganDark 2021-11-08 13:05:28 -08:00
parent f1649a43cd
commit 7c5883fc60
No known key found for this signature in database
GPG key ID: B8C37CEDE1AC60EA

View file

@ -22,7 +22,7 @@ static const uint32_t kMaxRegisterCount = 255;
static const uint32_t kMaxUpvalueCount = 200;
static const uint32_t kMaxLocalCount = 200;
static const char* kSpecialGlobals[] = {"Game", "Workspace", "_G", "game", "plugin", "script", "shared", "workspace"};
static const char* kSpecialGlobals[] = {"_G"};
CompileError::CompileError(const Location& location, const std::string& message)
: location(location)