Bug 1112778, part 7 - Rename JSObject::{get,set}Generic etc. -> js::{Get,Set}Property and add a few comments. r=Waldo.

This commit is contained in:
Jason Orendorff
2014-12-18 08:35:42 -06:00
parent 776fbd3af1
commit 3e0e414743
42 changed files with 293 additions and 295 deletions

View File

@@ -2462,7 +2462,7 @@ date_toJSON(JSContext *cx, unsigned argc, Value *vp)
/* Step 4. */
RootedValue toISO(cx);
if (!JSObject::getProperty(cx, obj, obj, cx->names().toISOString, &toISO))
if (!GetProperty(cx, obj, obj, cx->names().toISOString, &toISO))
return false;
/* Step 5. */