| Index: utils/tests/peg/peg_test.dart
|
| diff --git a/utils/tests/peg/peg_test.dart b/utils/tests/peg/peg_test.dart
|
| index a8cc7d8c2df305d6788860fa7a42bdbae04a20a6..e2dedb8125bdfd007ed6f7853c650d43b005bd85 100644
|
| --- a/utils/tests/peg/peg_test.dart
|
| +++ b/utils/tests/peg/peg_test.dart
|
| @@ -43,7 +43,7 @@ testBlockComment() {
|
| check(g, a, "x /*/***/ x", 'EOF in block comment');
|
| check(g, a, "x /*/*/x**/**/ x", '[x,x]');
|
|
|
| - check(g, a, @"""
|
| + check(g, a, r"""
|
| /* Comment */
|
| /* Following comment with /* nested comment*/ */
|
| x
|
| @@ -126,9 +126,9 @@ testC() {
|
|
|
| // Lexical elements.
|
| var idStartChar = CHAR(
|
| - @"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz");
|
| + r"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz");
|
| var idNextChar = CHAR(
|
| - @"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789$_");
|
| + r"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789$_");
|
|
|
| var id = TEXT(LEX('identifier', [idStartChar, MANY(idNextChar, min: 0)]));
|
|
|
|
|