Bug 1129285 - Fix findReferences-01.js to follow bug 1125930. r=jandem

This commit is contained in:
Tooru Fujisawa 2015-02-04 17:11:46 +09:00
parent f381e80fa5
commit cc87fe9c9c

View File

@ -11,7 +11,7 @@ if (typeof findReferences == "function") {
o.myself = o; // self-references should be reported
o.alsoMyself = o; // multiple self-references should all be reported
assertEq(referencesVia(o, 'type; type_proto', C.prototype), true);
assertEq(referencesVia(o, 'group; group_proto', C.prototype), true);
assertEq(referencesVia(o, 'shape; base; parent', this), true);
assertEq(referencesVia(o, 'x', o.x), true);
assertEq(referencesVia(o, 'objectElements[42]', o[42]), true);