Proxy a Promise をネイティブ Firefox (および Babel を使用) で実行しようとしています。
var prom = new Promise(function(resolve, reject){resolve(42)});
var promProxy = new Proxy(prom, {});
promProxy.then(function(response){console.log(response)});
これは機能しません。「TypeError: 'then' called on an object that not implement interface Promise.」というメッセージが表示されます。