Bug 1322954 - Fix incorrect instanceof negations. r=markh

MozReview-Commit-ID: PgQmAu9hbQ
This commit is contained in:
Kit Cambridge
2016-12-12 13:50:10 -08:00
parent ecc77f4e3d
commit 5e867ab8db
12 changed files with 16 additions and 16 deletions

View File

@@ -1049,7 +1049,7 @@ var DebuggerServer = {
try {
m = require(module);
if (!setupParent in m) {
if (!(setupParent in m)) {
dumpn(`ERROR: module '${module}' does not export '${setupParent}'`);
return false;
}