-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
incorrect function.name behavior when Object.setPrototypeOf is used #296
Comments
The same issue happens then using babel's es2015 preset. "use strict";
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
var BaseClass = function BaseClass() {
_classCallCheck(this, BaseClass);
};
var SubClass = function (_BaseClass) {
_inherits(SubClass, _BaseClass);
function SubClass() {
_classCallCheck(this, SubClass);
return _possibleConstructorReturn(this, (SubClass.__proto__ || Object.getPrototypeOf(SubClass)).apply(this, arguments));
}
return SubClass;
}(BaseClass);
console.log(BaseClass.name);
console.log(SubClass.name); |
You are right, but I'm not sure which behaviour is more correct - without adding own |
I'm experiencing a similar issue and I would like to know if it is related to this problem. What is interesting is that this behavior only occurs on IE11(only IE I tested). I'm using Typescript 2 in an Angular project. I have an abstract class A which extends from Angular's ErrorHandler. Then I have another class B which extends from A. abstract class A extends ErrorHandler {
...
}
class B extends A {
...
} Now when I try abstract class A {
...
} then when I try Here are all the corejs files I'm including. import 'core-js/es6/symbol'
import 'core-js/es6/object'
import 'core-js/es6/function'
import 'core-js/es6/parse-int'
import 'core-js/es6/parse-float'
import 'core-js/es6/number'
import 'core-js/es6/math'
import 'core-js/es6/string'
import 'core-js/es6/date'
import 'core-js/es6/array'
import 'core-js/es6/regexp'
import 'core-js/es6/map'
import 'core-js/es6/set'
import 'core-js/es6/weak-map'
import 'core-js/es6/weak-set'
import 'core-js/es6/typed'
import 'core-js/es6/reflect'
import 'core-js/es7/reflect'
import 'core-js/es7/array'
import 'core-js/fn/object/values' |
@Drabc it's related. The issue isn't on how deep is your prototype chain or what is in it but rather the order in which you query the core-js/modules/es6.function.name.js Line 19 in a41dd09
Just make sure you don't query the |
OK, I'll remove caching without a major bump, seems it should not cause any problems. |
TypeScript 2 uses
Object.setPrototypeOf
to inherit static fields from the base class.In environments where
function.name
doesn't exist, this code returnsBaseClass
,BaseClass
. The correct behavior isBaseClass
,SubClass
.If the order of the 2
console.log
statements are reversed core-js produces the correct results. The problem is that core-js caches the name, so when I call theBaseClass.name
a cache gets created and a new property is defined using a static value for the name property instead of the expensive getter. Then when I callSubClass.name
, the prototype chain contains the cached value (defined inBaseClass
), so the expensive getter won't get called.Possible fixes:
this
is thatthis
of the cached value. If the check fails, the new name would be calculated and if would define a new property for this newthis
value.The text was updated successfully, but these errors were encountered: