1
0
mirror of https://github.com/i-net-software/JWebAssembly.git synced 2025-03-16 02:48:51 +01:00

move every function parameter declaration to its own line for a better readable.

This commit is contained in:
Volker Berlin 2021-01-24 11:08:54 +01:00
parent 3e42160655
commit 75a78c2ac2

@ -377,7 +377,8 @@ public class TextModuleWriter extends ModuleWriter {
if( methodOutput == null ) {
return;
}
methodOutput.append( '(' ).append( kind );
newline( methodOutput );
methodOutput.append( " (" ).append( kind );
if( options.debugNames() ) {
if( name != null ) {
methodOutput.append( " $" ).append( name );