Fixed for-loop parsing

This commit is contained in:
dcodeIO
2017-11-29 00:18:14 +01:00
parent df637164a6
commit bad5175a55
10 changed files with 250 additions and 63 deletions

View File

@ -1257,7 +1257,6 @@ export class ExpressionStatement extends Statement {
serialize(sb: string[]): void {
this.expression.serialize(sb);
sb.push(";");
}
}