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

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

Issue 1212433002: Implement SsaBuilder without the ResolvedVisitor. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 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/warnings.dart
diff --git a/pkg/compiler/lib/src/warnings.dart b/pkg/compiler/lib/src/warnings.dart
index eb3204571fd97432dc6bfbcb95273387ee2987cc..a4b3ea016245c15c505c9c656706e2376ba7e726 100644
--- a/pkg/compiler/lib/src/warnings.dart
+++ b/pkg/compiler/lib/src/warnings.dart
@@ -640,10 +640,11 @@ main() => new C<String>();
"Not a compile-time constant.");
static const MessageKind DEFERRED_COMPILE_TIME_CONSTANT = const MessageKind(
- "A Deferred value cannot be used as a compile-time constant.");
+ "A deferred value cannot be used as a compile-time constant.");
static const MessageKind DEFERRED_COMPILE_TIME_CONSTANT_CONSTRUCTION =
- const MessageKind("A deferred class cannot be used to create a"
+ const MessageKind(
+ "A deferred class cannot be used to create a "
sigurdm 2015/06/26 07:44:19 Thanks!
"compile-time constant.");
static const MessageKind CYCLIC_COMPILE_TIME_CONSTANTS = const MessageKind(

Powered by Google App Engine
This is Rietveld 408576698