| Index: sdk/lib/_internal/compiler/implementation/ssa/nodes.dart
|
| ===================================================================
|
| --- sdk/lib/_internal/compiler/implementation/ssa/nodes.dart (revision 14840)
|
| +++ sdk/lib/_internal/compiler/implementation/ssa/nodes.dart (working copy)
|
| @@ -517,7 +517,6 @@
|
| }
|
|
|
| void addAtEntry(HInstruction instruction) {
|
| - assert(isClosed());
|
| assert(instruction is !HPhi);
|
| super.addBefore(first, instruction);
|
| instruction.notifyAddedToBlock(this);
|
| @@ -2159,7 +2158,7 @@
|
| }
|
|
|
| class HThis extends HParameterValue {
|
| - HThis([HType type = HType.UNKNOWN]) : super(null) {
|
| + HThis(Element element, [HType type = HType.UNKNOWN]) : super(element) {
|
| guaranteedType = type;
|
| }
|
| toString() => 'this';
|
|
|