fix build: json server super call

This commit is contained in:
Joao Moreno
2016-02-23 08:53:32 +01:00
parent 443b25c2aa
commit 89b641e269

View File

@@ -417,9 +417,9 @@ export class StringASTNode extends ASTNode {
public value: string;
constructor(parent: ASTNode, name: string, isKey: boolean, start: number, end?: number) {
super(parent, 'string', name, start, end);
this.isKey = isKey;
this.value = '';
super(parent, 'string', name, start, end);
}
public getValue(): any {