Index: sdk/lib/_internal/compiler/implementation/compiler.dart |
diff --git a/sdk/lib/_internal/compiler/implementation/compiler.dart b/sdk/lib/_internal/compiler/implementation/compiler.dart |
index 0bc9baf634e71a6d7b4f0cc316feae74c9eea666..802214c2d84f0b7e6c4277d95c02490845e9d6dd 100644 |
--- a/sdk/lib/_internal/compiler/implementation/compiler.dart |
+++ b/sdk/lib/_internal/compiler/implementation/compiler.dart |
@@ -973,7 +973,7 @@ abstract class Compiler implements DiagnosticListener { |
// multiple times. Implement a better mechanism where we can store |
// such caches in the compiler and get access to them through a |
// suitably maintained static reference to the current compiler. |
- SourceString.canonicalizedValues.clear(); |
+ StringToken.canonicalizedSubstrings.clear(); |
Selector.canonicalizedValues.clear(); |
TypedSelector.canonicalizedValues.clear(); |
@@ -1588,7 +1588,7 @@ bool invariant(Spannable spannable, var condition, {var message: null}) { |
/** |
* Global |
*/ |
-bool isPrivateName(String s)=> !s.isEmpty && s.codeUnitAt(0) == $_; |
+bool isPrivateName(String s) => !s.isEmpty && s.codeUnitAt(0) == $_; |
/// A sink that drains into /dev/null. |
class NullSink implements EventSink<String> { |