Skip to content

Commit

Permalink
fix(parser): remove unnecessary spaces from unparser output
Browse files Browse the repository at this point in the history
  • Loading branch information
gheoan committed Mar 9, 2016
1 parent b073532 commit e776287
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ast.js
Expand Up @@ -687,7 +687,7 @@ export class Unparser {
this.write(`&${behavior.name}`);

for (i = 0; i < length; ++i) {
this.write(' :');
this.write(':');
args[i].accept(this);
}

Expand All @@ -704,7 +704,7 @@ export class Unparser {
this.write(`|${converter.name}`);

for (i = 0; i < length; ++i) {
this.write(' :');
this.write(':');
args[i].accept(this);
}

Expand Down

0 comments on commit e776287

Please sign in to comment.