Bug 978229 - Part 0: Rename jsproxy.cpp internal IdToValue to IdToExposableValue. (r=jorendorff)

This commit is contained in:
Eric Faust 2014-04-25 17:10:50 -07:00
parent 0286188e22
commit 01e38ec5c3

View File

@ -1329,7 +1329,7 @@ HasOwn(JSContext *cx, HandleObject obj, HandleId id, bool *bp)
} }
static bool static bool
IdToValue(JSContext *cx, HandleId id, MutableHandleValue value) IdToExposableValue(JSContext *cx, HandleId id, MutableHandleValue value)
{ {
value.set(IdToValue(id)); // Re-use out-param to avoid Rooted overhead. value.set(IdToValue(id)); // Re-use out-param to avoid Rooted overhead.
JSString *name = ToString<CanGC>(cx, value); JSString *name = ToString<CanGC>(cx, value);
@ -1374,7 +1374,7 @@ TrapGetOwnProperty(JSContext *cx, HandleObject proxy, HandleId id, MutableHandle
// step 5 // step 5
RootedValue value(cx); RootedValue value(cx);
if (!IdToValue(cx, id, &value)) if (!IdToExposableValue(cx, id, &value))
return false; return false;
Value argv[] = { Value argv[] = {
ObjectValue(*target), ObjectValue(*target),
@ -1488,7 +1488,7 @@ TrapDefineOwnProperty(JSContext *cx, HandleObject proxy, HandleId id, MutableHan
// step 6 // step 6
RootedValue value(cx); RootedValue value(cx);
if (!IdToValue(cx, id, &value)) if (!IdToExposableValue(cx, id, &value))
return false; return false;
Value argv[] = { Value argv[] = {
ObjectValue(*target), ObjectValue(*target),
@ -1823,7 +1823,7 @@ ScriptedDirectProxyHandler::delete_(JSContext *cx, HandleObject proxy, HandleId
// step 5 // step 5
RootedValue value(cx); RootedValue value(cx);
if (!IdToValue(cx, id, &value)) if (!IdToExposableValue(cx, id, &value))
return false; return false;
Value argv[] = { Value argv[] = {
ObjectValue(*target), ObjectValue(*target),
@ -1918,7 +1918,7 @@ ScriptedDirectProxyHandler::has(JSContext *cx, HandleObject proxy, HandleId id,
// step 5 // step 5
RootedValue value(cx); RootedValue value(cx);
if (!IdToValue(cx, id, &value)) if (!IdToExposableValue(cx, id, &value))
return false; return false;
Value argv[] = { Value argv[] = {
ObjectOrNullValue(target), ObjectOrNullValue(target),
@ -1981,7 +1981,7 @@ ScriptedDirectProxyHandler::hasOwn(JSContext *cx, HandleObject proxy, HandleId i
// step 5 // step 5
RootedValue value(cx); RootedValue value(cx);
if (!IdToValue(cx, id, &value)) if (!IdToExposableValue(cx, id, &value))
return false; return false;
Value argv[] = { Value argv[] = {
ObjectOrNullValue(target), ObjectOrNullValue(target),
@ -2058,7 +2058,7 @@ ScriptedDirectProxyHandler::get(JSContext *cx, HandleObject proxy, HandleObject
// step 5 // step 5
RootedValue value(cx); RootedValue value(cx);
if (!IdToValue(cx, id, &value)) if (!IdToExposableValue(cx, id, &value))
return false; return false;
Value argv[] = { Value argv[] = {
ObjectOrNullValue(target), ObjectOrNullValue(target),
@ -2121,7 +2121,7 @@ ScriptedDirectProxyHandler::set(JSContext *cx, HandleObject proxy, HandleObject
// step 5 // step 5
RootedValue value(cx); RootedValue value(cx);
if (!IdToValue(cx, id, &value)) if (!IdToExposableValue(cx, id, &value))
return false; return false;
Value argv[] = { Value argv[] = {
ObjectOrNullValue(target), ObjectOrNullValue(target),