| Index: utils/peg/pegparser.dart
|
| diff --git a/utils/peg/pegparser.dart b/utils/peg/pegparser.dart
|
| index 13336825e4ae9471b3603830b2d49249ff32b997..9072e2d315f92396fad80b55320f05077c83ff30 100644
|
| --- a/utils/peg/pegparser.dart
|
| +++ b/utils/peg/pegparser.dart
|
| @@ -275,7 +275,7 @@ class Grammar {
|
| a.startsWith("'") == b.startsWith("'")
|
| ? a.compareTo(b)
|
| : a.startsWith("'") ? +1 : -1);
|
| - var expected = Strings.join(tokens, ' or ');
|
| + var expected = tokens.join(' or ');
|
| var found = state.max_pos == state._end ? 'end of file'
|
| : "'${state._text[state.max_pos]}'";
|
| message = 'Expected $expected but found $found';
|
|
|