Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1019)

Unified Diff: pkg/compiler/lib/src/compiler.dart

Issue 2659883002: Use entities in BackendClasses (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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}) {

Powered by Google App Engine
This is Rietveld 408576698