зеркало из https://github.com/mozilla/pjs.git
- not built -
s/throw BadMojo/throw new BadMojo/g so we can test with instanceof later
This commit is contained in:
Родитель
65d0cc4783
Коммит
7e0208ed53
|
@ -49,7 +49,7 @@ function initPrefs()
|
|||
console.prefs.save =
|
||||
function pfs_save ()
|
||||
{
|
||||
throw BadMojo(ERR_NOT_IMPLEMENTED);
|
||||
throw new BadMojo(ERR_NOT_IMPLEMENTED);
|
||||
}
|
||||
|
||||
console.addPref =
|
||||
|
|
|
@ -44,7 +44,7 @@ function _getChannelForURL (url)
|
|||
{
|
||||
var serv = Components.classes[IOSERVICE_CTRID].getService(nsIIOService);
|
||||
if (!serv)
|
||||
throw BadMojo(ERR_FAILURE);
|
||||
throw new BadMojo(ERR_FAILURE);
|
||||
|
||||
return serv.newChannel(url, null);
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче