Transpile arguments correctly in Target.hpp
Signed-off-by: Username404 <w.iron.zombie@gmail.com>
This commit is contained in:
parent
ba14e95d50
commit
3a75531664
|
@ -130,7 +130,7 @@ public:
|
||||||
make_task(StandardComponents::Call,
|
make_task(StandardComponents::Call,
|
||||||
const auto print_functions = printFunctions();
|
const auto print_functions = printFunctions();
|
||||||
output << ((parseComponent.name == "print") ? print_functions.first : (parseComponent.name == "print_line") ? print_functions.second : parseComponent.name) << '(';
|
output << ((parseComponent.name == "print") ? print_functions.first : (parseComponent.name == "print_line") ? print_functions.second : parseComponent.name) << '(';
|
||||||
transpileTree(parseComponent);
|
separate_transpileTree(parseComponent, ", ");
|
||||||
output << ')';
|
output << ')';
|
||||||
)
|
)
|
||||||
}));
|
}));
|
||||||
|
|
Loading…
Reference in New Issue