| Index: runtime/vm/il_printer.cc
|
| ===================================================================
|
| --- runtime/vm/il_printer.cc (revision 8007)
|
| +++ runtime/vm/il_printer.cc (working copy)
|
| @@ -194,15 +194,12 @@
|
| f->Print(" %s %s",
|
| negate_result() ? "ISNOT" : "IS",
|
| String::Handle(type().Name()).ToCString());
|
| - if (instantiator() != NULL) {
|
| - f->Print(" (instantiator:");
|
| - instantiator()->PrintTo(f);
|
| - f->Print(")");
|
| - }
|
| - if (type_arguments() != NULL) {
|
| - f->Print(" (type-arg:");
|
| - type_arguments()->PrintTo(f);
|
| - }
|
| + f->Print(" (instantiator:");
|
| + instantiator()->PrintTo(f);
|
| + f->Print(")");
|
| + f->Print(" (type-arg:");
|
| + instantiator_type_arguments()->PrintTo(f);
|
| + f->Print(")");
|
| }
|
|
|
|
|
|
|