Bug 1118489 - Invoke Proxy constructor with 'new' to avoid soon-to-be TypeError. (r=philipp, a=rkent)

This commit is contained in:
Eric Faust 2015-01-06 15:50:55 -08:00
Родитель a343cf47fe
Коммит bcbf92f727
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -67,7 +67,7 @@ cal.async = {
* will be complaints that an argument is missing.
*/
promisifyCalendar: function(aCalendar) {
return Proxy(aCalendar, promisifyProxyHandler);
return new Proxy(aCalendar, promisifyProxyHandler);
},
/**
* Create an operation listener (calIOperationListener) that resolves when