| 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 19eeb057d19d576d2d1204fc8dfd6225df89d3ff..07461d1994e5da7d363f7a7c8539fe965b305574 100644
|
| --- a/pkg/compiler/lib/src/tree_ir/tree_ir_nodes.dart
|
| +++ b/pkg/compiler/lib/src/tree_ir/tree_ir_nodes.dart
|
| @@ -686,12 +686,12 @@ class CreateBox extends Expression {
|
| }
|
|
|
| class CreateInstance extends Expression {
|
| - ClassElement classElement;
|
| + InterfaceType dartType;
|
| List<Expression> arguments;
|
| List<Expression> typeInformation;
|
| SourceInformation sourceInformation;
|
|
|
| - CreateInstance(this.classElement, this.arguments,
|
| + CreateInstance(this.dartType, this.arguments,
|
| this.typeInformation, this.sourceInformation);
|
|
|
| accept(ExpressionVisitor visitor) => visitor.visitCreateInstance(this);
|
|
|