最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - super() does not pass arguments when instantiating a class extended from Object in Chrome V8 - Stack Overflow

programmeradmin3浏览0评论

The code below logs false in Chrome V8 but logs true in Babel. The feedback from Google said that logging false is how it is supposed to be while logging true is a bug of Babel. I looked into the ES6 specs and still couldn't understand the mechanism behind this. Any thoughts would be appreciated!

class NewObj extends Object{
  constructor(){
    super(...arguments); // In V8, after arguments === [{attr: true}]
                         // is passed as parameter to super(),
                         // this === NewObj{} in V8; 
                         // but this === NewObj{attr: true} in Babel.
  }
}
var o = new NewObj({attr: true});
console.log(o.attr === true);

The code below logs false in Chrome V8 but logs true in Babel. The feedback from Google said that logging false is how it is supposed to be while logging true is a bug of Babel. I looked into the ES6 specs and still couldn't understand the mechanism behind this. Any thoughts would be appreciated!

class NewObj extends Object{
  constructor(){
    super(...arguments); // In V8, after arguments === [{attr: true}]
                         // is passed as parameter to super(),
                         // this === NewObj{} in V8; 
                         // but this === NewObj{attr: true} in Babel.
  }
}
var o = new NewObj({attr: true});
console.log(o.attr === true);
Share Improve this question edited Mar 24, 2016 at 16:08 Felix Kling 818k181 gold badges1.1k silver badges1.2k bronze badges asked Mar 24, 2016 at 15:13 CapybaraCapybara 1907 bronze badges 2
  • 2 I don't understand the response to that bug; a super() call is most certainly allowed to include an argument list, and the Object constructor is supposed to pay attention to its argument. – Pointy Commented Mar 24, 2016 at 15:27
  • 1 It's a Chromium bug. I've tested on Microsoft Edge. It returns true. – Lewis Commented Mar 24, 2016 at 15:35
Add a ment  | 

1 Answer 1

Reset to default 9

In fact the feedback you got on that Chrome bug is correct. Some things did change here from ES5 to ES6. Babel can't really do anything about it, and Edge didn't yet change it. Or it's an erratum :-)

The ES5 new Object(value) spec says that it returns an object value that is passed in.

In ES6, you have to check the sections on [[construct]] of builtins and the Object(value) function. And the first statement of that is

If NewTarget is neither undefined nor the active function, then
Return OrdinaryCreateFromConstructor(NewTarget, "%ObjectPrototype%").

So if you are doing new Object({…}), it will still return the {…} argument. But when you are calling it from super() or as Reflect.construct(Object, [{…}], MyCustomTarget), so that new.target is not Object, then you'll just get a new object constructed from MyCustomTarget.prototype, and the argument is ignored.

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论