Bug 712873 - Part 2: Replace JS_ASSERT with MOZ_ASSERT outside js/src/ directory. r=luke

This commit is contained in:
Chris Peterson
2014-02-17 22:24:15 -08:00
parent a645241fdc
commit 5c6dc9f533
23 changed files with 224 additions and 224 deletions

View File

@@ -180,7 +180,7 @@ JavaScriptShared::toVariant(JSContext *cx, JS::HandleValue from, JSVariant *to)
{
RootedObject obj(cx, from.toObjectOrNull());
if (!obj) {
JS_ASSERT(from == JSVAL_NULL);
MOZ_ASSERT(from == JSVAL_NULL);
*to = uint64_t(0);
return true;
}