Skip to content

Commit

Permalink
precompile: remove more blank lines in output
Browse files Browse the repository at this point in the history
  • Loading branch information
CanadaHonk committed Apr 14, 2024
1 parent 9815017 commit 9f75977
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion compiler/generated_builtins.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion compiler/precompile.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ ${funcs.map(x => ` this.${x.name} = {
localNames: ${JSON.stringify(Object.keys(x.locals))},
${x.data && x.data.length > 0 ? ` data: ${JSON.stringify(x.data)},` : ''}
${x.exceptions && x.exceptions.length > 0 ? ` exceptions: ${JSON.stringify(x.exceptions)},` : ''}
};`.replaceAll('\n\n', '\n')).join('\n')}
};`.replaceAll('\n\n', '\n').replaceAll('\n\n', '\n')).join('\n')}
};`;
};

Expand Down

0 comments on commit 9f75977

Please sign in to comment.