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

@ -88,6 +88,8 @@ class StringWrapper {
static bool contains(String s, String substr) {
return s.contains(substr);
}
static bool isString(s) => s is String;
}
class StringJoiner {