Skip to content

Commit

Permalink
Expand language.lua data to include Roblox v504 changes. (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
BenMactavsin authored Nov 18, 2021
1 parent bd5a38a commit 347b9d4
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions src/lexer/language.lua
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ return {
["string"] = true,
["table"] = true,
["utf8"] = true,
["task"] = true,

-- Roblox Functions
["delay"] = true,
Expand Down Expand Up @@ -119,6 +118,8 @@ return {
["Region3"] = true,
["Region3int16"] = true,
["RotationCurveKey"] = true,
["task"] = true,
["TextChatMessageProperties"] = true,
["TweenInfo"] = true,
["UDim"] = true,
["UDim2"] = true,
Expand Down Expand Up @@ -209,6 +210,7 @@ return {
},

debug = {
dumpheap = true,
info = true,
profilebegin = true,
profileend = true,
Expand All @@ -217,15 +219,6 @@ return {
traceback = true,
},

task = {
wait = true,
spawn = true,
delay = true,
defer = true,
synchronize = true,
desynchronize = true,
},

os = {
time = true,
date = true,
Expand All @@ -250,6 +243,8 @@ return {
bor = true,
btest = true,
bxor = true,
countlz = true,
countrz = true,
extract = true,
lrotate = true,
lshift = true,
Expand Down Expand Up @@ -278,6 +273,7 @@ return {

BrickColor = {
new = true,
New = true,
Random = true,
Black = true,
Blue = true,
Expand Down Expand Up @@ -409,6 +405,15 @@ return {
new = true,
},

task = {
wait = true,
spawn = true,
delay = true,
defer = true,
synchronize = true,
desynchronize = true,
},

TweenInfo = {
new = true,
},
Expand Down

0 comments on commit 347b9d4

Please sign in to comment.