Skip to content

Commit 2bb7c1a

Browse files
committed
Removed glua target
1 parent 5cb7b09 commit 2bb7c1a

3 files changed

Lines changed: 0 additions & 39 deletions

File tree

src/Compiler.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import { CompilerOptions, parseCommandLine } from "./CommandLineParser";
66
import { LuaTranspiler51 } from "./targets/Transpiler.51";
77
import { LuaTranspiler52 } from "./targets/Transpiler.52";
88
import { LuaTranspiler53 } from "./targets/Transpiler.53";
9-
import { LuaTranspilerGLua } from "./targets/Transpiler.GLua";
109
import { LuaTranspilerJIT } from "./targets/Transpiler.JIT";
1110
import { LuaLibImportKind, LuaTarget, LuaTranspiler } from "./Transpiler";
1211

@@ -170,9 +169,6 @@ export function createTranspiler(checker: ts.TypeChecker,
170169
case LuaTarget.Lua53:
171170
luaTargetTranspiler = new LuaTranspiler53(checker, options, sourceFile);
172171
break;
173-
case LuaTarget.GLua:
174-
luaTargetTranspiler = new LuaTranspilerGLua(checker, options, sourceFile);
175-
break;
176172
default:
177173
luaTargetTranspiler = new LuaTranspilerJIT(checker, options, sourceFile);
178174
break;

src/Transpiler.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ export enum LuaTarget {
1616
Lua52 = "5.2",
1717
Lua53 = "5.3",
1818
LuaJIT = "jit",
19-
GLua = "glua",
2019
}
2120

2221
export enum LuaLibFeature {

src/targets/Transpiler.GLua.ts

Lines changed: 0 additions & 34 deletions
This file was deleted.

0 commit comments

Comments
 (0)