applyDecs2203.js 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = applyDecs2203;
  6. function createAddInitializerMethod(initializers, decoratorFinishedRef) {
  7. return function addInitializer(initializer) {
  8. assertNotFinished(decoratorFinishedRef, "addInitializer");
  9. assertCallable(initializer, "An initializer");
  10. initializers.push(initializer);
  11. };
  12. }
  13. function memberDec(dec, name, desc, initializers, kind, isStatic, isPrivate, value) {
  14. var kindStr;
  15. switch (kind) {
  16. case 1:
  17. kindStr = "accessor";
  18. break;
  19. case 2:
  20. kindStr = "method";
  21. break;
  22. case 3:
  23. kindStr = "getter";
  24. break;
  25. case 4:
  26. kindStr = "setter";
  27. break;
  28. default:
  29. kindStr = "field";
  30. }
  31. var ctx = {
  32. kind: kindStr,
  33. name: isPrivate ? "#" + name : name,
  34. static: isStatic,
  35. private: isPrivate
  36. };
  37. var decoratorFinishedRef = {
  38. v: false
  39. };
  40. if (kind !== 0) {
  41. ctx.addInitializer = createAddInitializerMethod(initializers, decoratorFinishedRef);
  42. }
  43. var get, set;
  44. if (kind === 0) {
  45. if (isPrivate) {
  46. get = desc.get;
  47. set = desc.set;
  48. } else {
  49. get = function () {
  50. return this[name];
  51. };
  52. set = function (v) {
  53. this[name] = v;
  54. };
  55. }
  56. } else if (kind === 2) {
  57. get = function () {
  58. return desc.value;
  59. };
  60. } else {
  61. if (kind === 1 || kind === 3) {
  62. get = function () {
  63. return desc.get.call(this);
  64. };
  65. }
  66. if (kind === 1 || kind === 4) {
  67. set = function (v) {
  68. desc.set.call(this, v);
  69. };
  70. }
  71. }
  72. ctx.access = get && set ? {
  73. get: get,
  74. set: set
  75. } : get ? {
  76. get: get
  77. } : {
  78. set: set
  79. };
  80. try {
  81. return dec(value, ctx);
  82. } finally {
  83. decoratorFinishedRef.v = true;
  84. }
  85. }
  86. function assertNotFinished(decoratorFinishedRef, fnName) {
  87. if (decoratorFinishedRef.v) {
  88. throw new Error("attempted to call " + fnName + " after decoration was finished");
  89. }
  90. }
  91. function assertCallable(fn, hint) {
  92. if (typeof fn !== "function") {
  93. throw new TypeError(hint + " must be a function");
  94. }
  95. }
  96. function assertValidReturnValue(kind, value) {
  97. var type = typeof value;
  98. if (kind === 1) {
  99. if (type !== "object" || value === null) {
  100. throw new TypeError("accessor decorators must return an object with get, set, or init properties or void 0");
  101. }
  102. if (value.get !== undefined) {
  103. assertCallable(value.get, "accessor.get");
  104. }
  105. if (value.set !== undefined) {
  106. assertCallable(value.set, "accessor.set");
  107. }
  108. if (value.init !== undefined) {
  109. assertCallable(value.init, "accessor.init");
  110. }
  111. } else if (type !== "function") {
  112. var hint;
  113. if (kind === 0) {
  114. hint = "field";
  115. } else if (kind === 10) {
  116. hint = "class";
  117. } else {
  118. hint = "method";
  119. }
  120. throw new TypeError(hint + " decorators must return a function or void 0");
  121. }
  122. }
  123. function applyMemberDec(ret, base, decInfo, name, kind, isStatic, isPrivate, initializers) {
  124. var decs = decInfo[0];
  125. var desc, init, value;
  126. if (isPrivate) {
  127. if (kind === 0 || kind === 1) {
  128. desc = {
  129. get: decInfo[3],
  130. set: decInfo[4]
  131. };
  132. } else if (kind === 3) {
  133. desc = {
  134. get: decInfo[3]
  135. };
  136. } else if (kind === 4) {
  137. desc = {
  138. set: decInfo[3]
  139. };
  140. } else {
  141. desc = {
  142. value: decInfo[3]
  143. };
  144. }
  145. } else if (kind !== 0) {
  146. desc = Object.getOwnPropertyDescriptor(base, name);
  147. }
  148. if (kind === 1) {
  149. value = {
  150. get: desc.get,
  151. set: desc.set
  152. };
  153. } else if (kind === 2) {
  154. value = desc.value;
  155. } else if (kind === 3) {
  156. value = desc.get;
  157. } else if (kind === 4) {
  158. value = desc.set;
  159. }
  160. var newValue, get, set;
  161. if (typeof decs === "function") {
  162. newValue = memberDec(decs, name, desc, initializers, kind, isStatic, isPrivate, value);
  163. if (newValue !== void 0) {
  164. assertValidReturnValue(kind, newValue);
  165. if (kind === 0) {
  166. init = newValue;
  167. } else if (kind === 1) {
  168. init = newValue.init;
  169. get = newValue.get || value.get;
  170. set = newValue.set || value.set;
  171. value = {
  172. get: get,
  173. set: set
  174. };
  175. } else {
  176. value = newValue;
  177. }
  178. }
  179. } else {
  180. for (var i = decs.length - 1; i >= 0; i--) {
  181. var dec = decs[i];
  182. newValue = memberDec(dec, name, desc, initializers, kind, isStatic, isPrivate, value);
  183. if (newValue !== void 0) {
  184. assertValidReturnValue(kind, newValue);
  185. var newInit;
  186. if (kind === 0) {
  187. newInit = newValue;
  188. } else if (kind === 1) {
  189. newInit = newValue.init;
  190. get = newValue.get || value.get;
  191. set = newValue.set || value.set;
  192. value = {
  193. get: get,
  194. set: set
  195. };
  196. } else {
  197. value = newValue;
  198. }
  199. if (newInit !== void 0) {
  200. if (init === void 0) {
  201. init = newInit;
  202. } else if (typeof init === "function") {
  203. init = [init, newInit];
  204. } else {
  205. init.push(newInit);
  206. }
  207. }
  208. }
  209. }
  210. }
  211. if (kind === 0 || kind === 1) {
  212. if (init === void 0) {
  213. init = function (instance, init) {
  214. return init;
  215. };
  216. } else if (typeof init !== "function") {
  217. var ownInitializers = init;
  218. init = function (instance, init) {
  219. var value = init;
  220. for (var i = 0; i < ownInitializers.length; i++) {
  221. value = ownInitializers[i].call(instance, value);
  222. }
  223. return value;
  224. };
  225. } else {
  226. var originalInitializer = init;
  227. init = function (instance, init) {
  228. return originalInitializer.call(instance, init);
  229. };
  230. }
  231. ret.push(init);
  232. }
  233. if (kind !== 0) {
  234. if (kind === 1) {
  235. desc.get = value.get;
  236. desc.set = value.set;
  237. } else if (kind === 2) {
  238. desc.value = value;
  239. } else if (kind === 3) {
  240. desc.get = value;
  241. } else if (kind === 4) {
  242. desc.set = value;
  243. }
  244. if (isPrivate) {
  245. if (kind === 1) {
  246. ret.push(function (instance, args) {
  247. return value.get.call(instance, args);
  248. });
  249. ret.push(function (instance, args) {
  250. return value.set.call(instance, args);
  251. });
  252. } else if (kind === 2) {
  253. ret.push(value);
  254. } else {
  255. ret.push(function (instance, args) {
  256. return value.call(instance, args);
  257. });
  258. }
  259. } else {
  260. Object.defineProperty(base, name, desc);
  261. }
  262. }
  263. }
  264. function applyMemberDecs(ret, Class, decInfos) {
  265. var protoInitializers;
  266. var staticInitializers;
  267. var existingProtoNonFields = new Map();
  268. var existingStaticNonFields = new Map();
  269. for (var i = 0; i < decInfos.length; i++) {
  270. var decInfo = decInfos[i];
  271. if (!Array.isArray(decInfo)) continue;
  272. var kind = decInfo[1];
  273. var name = decInfo[2];
  274. var isPrivate = decInfo.length > 3;
  275. var isStatic = kind >= 5;
  276. var base;
  277. var initializers;
  278. if (isStatic) {
  279. base = Class;
  280. kind = kind - 5;
  281. if (kind !== 0) {
  282. staticInitializers = staticInitializers || [];
  283. initializers = staticInitializers;
  284. }
  285. } else {
  286. base = Class.prototype;
  287. if (kind !== 0) {
  288. protoInitializers = protoInitializers || [];
  289. initializers = protoInitializers;
  290. }
  291. }
  292. if (kind !== 0 && !isPrivate) {
  293. var existingNonFields = isStatic ? existingStaticNonFields : existingProtoNonFields;
  294. var existingKind = existingNonFields.get(name) || 0;
  295. if (existingKind === true || existingKind === 3 && kind !== 4 || existingKind === 4 && kind !== 3) {
  296. throw new Error("Attempted to decorate a public method/accessor that has the same name as a previously decorated public method/accessor. This is not currently supported by the decorators plugin. Property name was: " + name);
  297. } else if (!existingKind && kind > 2) {
  298. existingNonFields.set(name, kind);
  299. } else {
  300. existingNonFields.set(name, true);
  301. }
  302. }
  303. applyMemberDec(ret, base, decInfo, name, kind, isStatic, isPrivate, initializers);
  304. }
  305. pushInitializers(ret, protoInitializers);
  306. pushInitializers(ret, staticInitializers);
  307. }
  308. function pushInitializers(ret, initializers) {
  309. if (initializers) {
  310. ret.push(function (instance) {
  311. for (var i = 0; i < initializers.length; i++) {
  312. initializers[i].call(instance);
  313. }
  314. return instance;
  315. });
  316. }
  317. }
  318. function applyClassDecs(ret, targetClass, classDecs) {
  319. if (classDecs.length > 0) {
  320. var initializers = [];
  321. var newClass = targetClass;
  322. var name = targetClass.name;
  323. for (var i = classDecs.length - 1; i >= 0; i--) {
  324. var decoratorFinishedRef = {
  325. v: false
  326. };
  327. try {
  328. var nextNewClass = classDecs[i](newClass, {
  329. kind: "class",
  330. name: name,
  331. addInitializer: createAddInitializerMethod(initializers, decoratorFinishedRef)
  332. });
  333. } finally {
  334. decoratorFinishedRef.v = true;
  335. }
  336. if (nextNewClass !== undefined) {
  337. assertValidReturnValue(10, nextNewClass);
  338. newClass = nextNewClass;
  339. }
  340. }
  341. ret.push(newClass, function () {
  342. for (var i = 0; i < initializers.length; i++) {
  343. initializers[i].call(newClass);
  344. }
  345. });
  346. }
  347. }
  348. function applyDecs2203(targetClass, memberDecs, classDecs) {
  349. var ret = [];
  350. applyMemberDecs(ret, targetClass, memberDecs);
  351. applyClassDecs(ret, targetClass, classDecs);
  352. return ret;
  353. }
  354. //# sourceMappingURL=applyDecs2203.js.map