Chromium Code Reviews| Index: runtime/vm/object.cc |
| =================================================================== |
| --- runtime/vm/object.cc (revision 596) |
| +++ runtime/vm/object.cc (working copy) |
| @@ -3706,6 +3706,9 @@ |
| ASSERT(!obj.IsNull()); |
| if (obj.IsClass()) { |
| cls ^= obj.raw(); |
| + if (cls.IsSignatureClass()) { |
| + continue; |
| + } |
|
siva
2011/10/21 17:20:47
I think this is not the right fix, imagine the cas
Anton Muhin
2011/10/21 17:34:26
Thanks a lot, Siva. Sounds like you're right. I'
siva
2011/10/21 18:13:37
Anton, see the updates done in issue 187. Regis an
|
| entry_name = cls.Name(); |
| } else if (obj.IsFunction()) { |
| func ^= obj.raw(); |