comment out semicolon removal for right braces in code generator - fixes #2621

This commit is contained in:
Sebastian McKenzie 2015-10-29 08:39:48 +00:00
parent 08fafb748c
commit de12747a3c

View File

@ -84,7 +84,7 @@ export default class Buffer {
rightBrace() {
this.newline(true);
if (this.format.compact) this._removeLast(";");
//if (this.format.compact) this._removeLast(";");
this.push("}");
}