feat(Parser): implement Unparser

fixes #1949
closes #2395
This commit is contained in:
Victor Berchet
2015-06-06 11:15:14 +02:00
committed by Tobias Bosch
parent 92f1af86d8
commit 331a051e75
6 changed files with 344 additions and 41 deletions

View File

@ -132,6 +132,8 @@ export class StringWrapper {
}
static contains(s: string, substr: string): boolean { return s.indexOf(substr) != -1; }
static isString(s: any): boolean { return typeof s === 'string' || s instanceof String; }
}
export class StringJoiner {