author | Jesse Ruderman <jruderman@gmail.com> |
Wed, 17 Oct 2012 17:14:03 -0700 | |
changeset 110623 | 4686dc4138ba97ce3e138c73b6c05bc541c3bd3b |
parent 110622 | 3b0b4ccb241f77772938e5a96885eb28aca01201 |
child 110624 | d9871b40e0f6d1192d5602fed7152d459cd052bf |
push id | 23704 |
push user | emorley@mozilla.com |
push date | Thu, 18 Oct 2012 17:12:58 +0000 |
treeherder | mozilla-central@3779eb3f036f [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
bugs | 742570 |
milestone | 19.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/js/src/builtin/TestingFunctions.cpp +++ b/js/src/builtin/TestingFunctions.cpp @@ -162,18 +162,18 @@ GetBuildConfiguration(JSContext *cx, uns } static JSBool GC(JSContext *cx, unsigned argc, jsval *vp) { /* * If the first argument is 'compartment', we collect any compartments * previously scheduled for GC via schedulegc. If the first argument is an - * object, we collect the object's compartment (any any other compartments - * scheduled for GC). Otherwise, we collect call compartments. + * object, we collect the object's compartment (and any other compartments + * scheduled for GC). Otherwise, we collect all compartments. */ JSBool compartment = false; if (argc == 1) { Value arg = vp[2]; if (arg.isString()) { if (!JS_StringEqualsAscii(cx, arg.toString(), "compartment", &compartment)) return false; } else if (arg.isObject()) {