We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f674b87 commit 6758068Copy full SHA for 6758068
src/vm/jvm/HLL/Backend.nqp
@@ -61,11 +61,11 @@ class HLL::Backend::JVM {
61
62
method classfile($jast, *%adverbs) {
63
if (%adverbs<target> eq 'classfile' || %adverbs<target> eq 'jar') && %adverbs<output> {
64
- nqp::compilejasttofile($jast.dump(), %adverbs<output>);
+ nqp::compilejastlinestofile($jast.dump(), %adverbs<output>);
65
nqp::null()
66
}
67
else {
68
- nqp::compilejast($jast.dump());
+ nqp::compilejastlines($jast.dump());
69
70
71
src/vm/jvm/QAST/JASTNodes.nqp
@@ -42,7 +42,7 @@ class JAST::Class is JAST::Node {
42
for @!methods {
43
$_.dump(@dumped);
44
45
- return nqp::join("\n", @dumped);
+ return @dumped;
46
47
48
0 commit comments