Index: pkg/compiler/lib/src/tree_ir/tree_ir_nodes.dart |
diff --git a/pkg/compiler/lib/src/tree_ir/tree_ir_nodes.dart b/pkg/compiler/lib/src/tree_ir/tree_ir_nodes.dart |
index 7c41a531f3c5a78dd22ee80c9821969b64568c57..3b6f76ee79013d81ef939fb1acb27b58a1bb023e 100644 |
--- a/pkg/compiler/lib/src/tree_ir/tree_ir_nodes.dart |
+++ b/pkg/compiler/lib/src/tree_ir/tree_ir_nodes.dart |
@@ -9,7 +9,7 @@ import '../dart_types.dart' show DartType, InterfaceType, TypeVariableType; |
import '../elements/elements.dart'; |
import '../io/source_information.dart' show SourceInformation; |
import '../types/types.dart' show TypeMask; |
-import '../universe/universe.dart' show Selector; |
+import '../universe/selector.dart' show Selector; |
import '../cps_ir/builtin_operator.dart'; |
export '../cps_ir/builtin_operator.dart'; |
@@ -372,7 +372,7 @@ class ApplyBuiltinMethod extends Expression { |
bool receiverIsNotNull; |
- ApplyBuiltinMethod(this.method, |
+ ApplyBuiltinMethod(this.method, |
this.receiver, |
this.arguments, |
{this.receiverIsNotNull: false}); |
@@ -501,7 +501,7 @@ class WhileTrue extends Loop { |
/** |
* A loop with a condition and update expressions. If there are any update |
* expressions, this generates a for loop, otherwise a while loop. |
- * |
+ * |
* When the condition is false, control resumes at the [next] statement. |
* |
* It is NOT valid to target this statement with a [Break]. |