| Index: pkg/front_end/lib/src/fasta/source/stack_listener.dart | 
| diff --git a/pkg/front_end/lib/src/fasta/source/stack_listener.dart b/pkg/front_end/lib/src/fasta/source/stack_listener.dart | 
| index e4367f52b0713ce04d5a48b4ed2b9c5005ee94f6..56fbbba425dad123628e164508918ee7de520a9e 100644 | 
| --- a/pkg/front_end/lib/src/fasta/source/stack_listener.dart | 
| +++ b/pkg/front_end/lib/src/fasta/source/stack_listener.dart | 
| @@ -117,8 +117,11 @@ abstract class StackListener extends Listener { | 
|  | 
| void checkEmpty(int charOffset) { | 
| if (stack.isNotEmpty) { | 
| -      internalError("${runtimeType}: Stack not empty:\n" | 
| -          "  ${stack.values.join('\n  ')}", uri, charOffset); | 
| +      internalError( | 
| +          "${runtimeType}: Stack not empty:\n" | 
| +          "  ${stack.values.join('\n  ')}", | 
| +          uri, | 
| +          charOffset); | 
| } | 
| if (recoverableErrors.isNotEmpty) { | 
| // TODO(ahe): Handle recoverable errors better. | 
|  |