This
contract Foo {
function f() {
g(
1, // one
2, // two
3 // three
);
assembly {
g(
1, // one
2, // two
3 // three
)
}
}
}
is being printed as:
contract Foo {
function f() {
g(
1, // one
2, // two
3 // three
);
assembly {
g(1, 2, 3) // one // two // three
}
}
}
Notice that it seems to work fine for normal function calls; the problem seems to be inside assembly blocks.
This
is being printed as:
Notice that it seems to work fine for normal function calls; the problem seems to be inside assembly blocks.