| Index: runtime/vm/il_printer.cc
|
| ===================================================================
|
| --- runtime/vm/il_printer.cc (revision 7716)
|
| +++ runtime/vm/il_printer.cc (working copy)
|
| @@ -50,9 +50,15 @@
|
| OS::Print(", %s, '%s'",
|
| String::Handle(comp->dst_type().Name()).ToCString(),
|
| comp->dst_name().ToCString());
|
| + if (comp->instantiator() != NULL) {
|
| + OS::Print(" (instantiator:");
|
| + comp->instantiator()->Accept(this);
|
| + OS::Print(")");
|
| + }
|
| if (comp->instantiator_type_arguments() != NULL) {
|
| - OS::Print(" (instantiator:");
|
| + OS::Print(" (instantiator-type-arg:");
|
| comp->instantiator_type_arguments()->Accept(this);
|
| + OS::Print(")");
|
| }
|
| OS::Print(")");
|
| }
|
|
|