зеркало из https://github.com/mozilla/gecko-dev.git
Bug 888399 - Fix missing parenthesis in DebuggerClient.Argument.prototype.getArgument. r=dcamp
This commit is contained in:
Родитель
0b7b106e1a
Коммит
d5a5fdd2c5
|
@ -320,7 +320,7 @@ DebuggerClient.Argument = function DCP(aPosition) {
|
|||
};
|
||||
|
||||
DebuggerClient.Argument.prototype.getArgument = function DCP_getArgument(aParams) {
|
||||
if (!this.position in aParams) {
|
||||
if (!(this.position in aParams)) {
|
||||
throw new Error("Bad index into params: " + this.position);
|
||||
}
|
||||
return aParams[this.position];
|
||||
|
|
Загрузка…
Ссылка в новой задаче