File tree Expand file tree Collapse file tree
src/compiler/transformers Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4072,9 +4072,13 @@ namespace ts {
40724072 priority : 0 ,
40734073 text : `
40744074 var __extends = (this && this.__extends) || (function () {
4075- var extendStatics = Object.setPrototypeOf ||
4076- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
4077- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
4075+ function extendStatics(d, b) {
4076+ extendStatics = Object.setPrototypeOf ||
4077+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
4078+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
4079+ return extendStatics(d, b);
4080+ }
4081+
40784082 return function (d, b) {
40794083 extendStatics(d, b);
40804084 function __() { this.constructor = d; }
Original file line number Diff line number Diff line change @@ -890,13 +890,16 @@ namespace ts {
890890 scoped : false ,
891891 priority : 1 ,
892892 text : `
893- var __assign = (this && this.__assign) || Object.assign || function(t) {
894- for (var s, i = 1, n = arguments.length; i < n; i++) {
895- s = arguments[i];
896- for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
897- t[p] = s[p];
898- }
899- return t;
893+ var __assign = (this && this.__assign) || function () {
894+ __assign = Object.assign || function(t) {
895+ for (var s, i = 1, n = arguments.length; i < n; i++) {
896+ s = arguments[i];
897+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
898+ t[p] = s[p];
899+ }
900+ return t;
901+ };
902+ return __assign.apply(this, arguments);
900903 };`
901904 } ;
902905
You can’t perform that action at this time.
0 commit comments