Skip to content

Commit

Permalink
TranslatorSpec: fix build error after recent changes
Browse files Browse the repository at this point in the history
  • Loading branch information
generalmimon committed Apr 15, 2024
1 parent 221f617 commit 32227fc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -957,11 +957,11 @@ class TranslatorSpec extends AnyFunSpec {
CSharpCompiler -> new CSharpTranslator(tp, new ImportList()),
GoCompiler -> new GoTranslator(goOutput, tp, new ImportList()),
JavaCompiler -> new JavaTranslator(tp, new ImportList()),
JavaScriptCompiler -> new JavaScriptTranslator(tp),
JavaScriptCompiler -> new JavaScriptTranslator(tp, new ImportList()),
LuaCompiler -> new LuaTranslator(tp, new ImportList()),
PerlCompiler -> new PerlTranslator(tp, new ImportList()),
PHPCompiler -> new PHPTranslator(tp, RuntimeConfig()),
PythonCompiler -> new PythonTranslator(tp, new ImportList()),
PythonCompiler -> new PythonTranslator(tp, new ImportList(), RuntimeConfig()),
RubyCompiler -> new RubyTranslator(tp)
)

Expand Down

0 comments on commit 32227fc

Please sign in to comment.