| Index: pkg/compiler/lib/src/compiler.dart
|
| diff --git a/pkg/compiler/lib/src/compiler.dart b/pkg/compiler/lib/src/compiler.dart
|
| index 2473f0e7927761e760343cef5a6b56819da0c17f..0494a188f8f0adff1b5b49c686d351d6f0ab0523 100644
|
| --- a/pkg/compiler/lib/src/compiler.dart
|
| +++ b/pkg/compiler/lib/src/compiler.dart
|
| @@ -1188,7 +1188,7 @@ class _CompilerCommonElements extends CommonElementsMixin {
|
| reporter.internalError(
|
| cls,
|
| "The class '${cls}' in '${cls.library.canonicalUri}' does not "
|
| - "contain required member: '$name'.");
|
| + "contain required member: '$name'.");
|
| }
|
| return member;
|
| }
|
| @@ -1202,7 +1202,7 @@ class _CompilerCommonElements extends CommonElementsMixin {
|
| reporter.internalError(
|
| cls,
|
| "The class '${cls}' in '${cls.library.canonicalUri}' does not "
|
| - "contain required constructor: '$name'.");
|
| + "contain required constructor: '$name'.");
|
| }
|
| return constructor;
|
| }
|
| @@ -1213,7 +1213,8 @@ class _CompilerCommonElements extends CommonElementsMixin {
|
| return _findLibraryMember(library, name, required: required);
|
| }
|
|
|
| - Element _findRequired(LibraryElement library, String name) => _findLibraryMember(library, name);
|
| + Element _findRequired(LibraryElement library, String name) =>
|
| + _findLibraryMember(library, name);
|
|
|
| Element _findLibraryMember(LibraryElement library, String name,
|
| {bool required: true}) {
|
|
|