Bug 924642 - SpiderMonkey: Apply internal name linkage using static keywords. r=njn

This commit is contained in:
Dan Gohman
2013-10-10 05:18:01 -07:00
parent f3457e80f6
commit f147ac843f
40 changed files with 97 additions and 97 deletions

View File

@@ -807,7 +807,7 @@ iterator_next_impl(JSContext *cx, CallArgs args)
return js_IteratorNext(cx, thisObj, args.rval());
}
bool
static bool
iterator_next(JSContext *cx, unsigned argc, Value *vp)
{
CallArgs args = CallArgsFromVp(argc, vp);
@@ -872,7 +872,7 @@ const Class PropertyIteratorObject::class_ = {
}
};
const uint32_t CLOSED_INDEX = UINT32_MAX;
static const uint32_t CLOSED_INDEX = UINT32_MAX;
JSObject *
ElementIteratorObject::create(JSContext *cx, Handle<Value> target)