Minor fix for outpu text formating

This commit is contained in:
Edwin Cheng 2019-11-20 01:22:28 +08:00
parent e290171397
commit 1d56b80250

View File

@ -75,7 +75,7 @@ interface ExpandedMacro {
function code_format(expanded: ExpandedMacro): string {
let result = `// Recursive expansion of ${expanded.name}! macro\n`;
result += '='.repeat(result.length);
result += '// ' + '='.repeat(result.length - 3);
result += '\n\n';
result += expanded.expansion;