From da974b3c52d95d82368e7d2d974bca049f3affde Mon Sep 17 00:00:00 2001 From: hazzard993 Date: Thu, 16 May 2019 19:30:14 +1000 Subject: [PATCH] Remove new from luaKeywords --- src/LuaTransformer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LuaTransformer.ts b/src/LuaTransformer.ts index 0245dccb7..8db628be8 100644 --- a/src/LuaTransformer.ts +++ b/src/LuaTransformer.ts @@ -40,7 +40,7 @@ interface Scope { export class LuaTransformer { public luaKeywords: Set = new Set([ - "and", "break", "do", "else", "elseif", "end", "false", "for", "function", "if", "in", "local", "new", "nil", + "and", "break", "do", "else", "elseif", "end", "false", "for", "function", "if", "in", "local", "nil", "not", "or", "repeat", "return", "self", "then", "until", "while", ]);