Update dependencies (#93)

This commit is contained in:
Max Graey
2018-05-03 19:25:32 +03:00
committed by Daniel Wirtz
parent 061976ee0c
commit 8997561670
9 changed files with 405 additions and 391 deletions

View File

@ -545,7 +545,7 @@ export class ASTBuilder {
}
visitIntegerLiteralExpression(node: IntegerLiteralExpression): void {
this.sb.push(node.value.toString());
this.sb.push(i64_to_string(node.value));
}
visitStringLiteral(str: string, singleQuoted: bool = false): void {