mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
remove Roblox-specific globals from kSpecialGlobals
This commit is contained in:
parent
f1649a43cd
commit
7c5883fc60
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ static const uint32_t kMaxRegisterCount = 255;
|
||||||
static const uint32_t kMaxUpvalueCount = 200;
|
static const uint32_t kMaxUpvalueCount = 200;
|
||||||
static const uint32_t kMaxLocalCount = 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)
|
CompileError::CompileError(const Location& location, const std::string& message)
|
||||||
: location(location)
|
: location(location)
|
||||||
|
|
Loading…
Add table
Reference in a new issue