Я вижу, что оператор instanceof
не работает в экземплярах подклассов Error
, когда работает под babel-node версия 6.1.18/ Node версия 5.1.0 на OS X. Почему это? Тот же код хорошо работает в браузере, попробуйте fiddle для примера.
Следующий код выводит true
в браузере, тогда как под babel - node - false:
class Sub extends Error {
}
let s = new Sub()
console.log(`The variable 's' is an instance of Sub: ${s instanceof Sub}`)
Я могу только представить, что это связано с ошибкой в babel - node, поскольку instanceof
работает для других базовых классов, чем Error
.
.babelrc
{
"presets": ["es2015"]
}
Скомпилированный вывод
Это JavaScript, скомпилированный babel 6.1.18:
'use strict';
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
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; }
var Sub = (function (_Error) {
_inherits(Sub, _Error);
function Sub() {
_classCallCheck(this, Sub);
return _possibleConstructorReturn(this, Object.getPrototypeOf(Sub).apply(this, arguments));
}
return Sub;
})(Error);
var s = new Sub();
console.log('The variable \'s\' is an instance of Sub: ' + (s instanceof Sub));