mozilla-ast.js 47 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376
  1. /***********************************************************************
  2. A JavaScript tokenizer / parser / beautifier / compressor.
  3. https://github.com/mishoo/UglifyJS2
  4. -------------------------------- (C) ---------------------------------
  5. Author: Mihai Bazon
  6. <mihai.bazon@gmail.com>
  7. http://mihai.bazon.net/blog
  8. Distributed under the BSD license:
  9. Copyright 2012 (c) Mihai Bazon <mihai.bazon@gmail.com>
  10. Redistribution and use in source and binary forms, with or without
  11. modification, are permitted provided that the following conditions
  12. are met:
  13. * Redistributions of source code must retain the above
  14. copyright notice, this list of conditions and the following
  15. disclaimer.
  16. * Redistributions in binary form must reproduce the above
  17. copyright notice, this list of conditions and the following
  18. disclaimer in the documentation and/or other materials
  19. provided with the distribution.
  20. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY
  21. EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  22. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  23. PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE
  24. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
  25. OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  26. PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  27. PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  28. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
  29. TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
  30. THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31. SUCH DAMAGE.
  32. ***********************************************************************/
  33. import * as ast from "./ast.js";
  34. import { make_node } from "./utils/index.js";
  35. import {
  36. AST_Accessor,
  37. AST_Array,
  38. AST_Arrow,
  39. AST_Assign,
  40. AST_Atom,
  41. AST_Await,
  42. AST_BigInt,
  43. AST_Binary,
  44. AST_Block,
  45. AST_BlockStatement,
  46. AST_Boolean,
  47. AST_Break,
  48. AST_Call,
  49. AST_Case,
  50. AST_Catch,
  51. AST_Chain,
  52. AST_Class,
  53. AST_ClassExpression,
  54. AST_ClassProperty,
  55. AST_ClassPrivateProperty,
  56. AST_ConciseMethod,
  57. AST_Conditional,
  58. AST_Const,
  59. AST_Constant,
  60. AST_Continue,
  61. AST_Debugger,
  62. AST_Default,
  63. AST_DefaultAssign,
  64. AST_DefClass,
  65. AST_Definitions,
  66. AST_Defun,
  67. AST_Destructuring,
  68. AST_Directive,
  69. AST_Do,
  70. AST_Dot,
  71. AST_DotHash,
  72. AST_EmptyStatement,
  73. AST_Expansion,
  74. AST_Export,
  75. AST_False,
  76. AST_Finally,
  77. AST_For,
  78. AST_ForIn,
  79. AST_ForOf,
  80. AST_Function,
  81. AST_Hole,
  82. AST_If,
  83. AST_Import,
  84. AST_ImportMeta,
  85. AST_Label,
  86. AST_LabeledStatement,
  87. AST_LabelRef,
  88. AST_Lambda,
  89. AST_Let,
  90. AST_NameMapping,
  91. AST_New,
  92. AST_NewTarget,
  93. AST_Node,
  94. AST_Null,
  95. AST_Number,
  96. AST_Object,
  97. AST_ObjectGetter,
  98. AST_ObjectKeyVal,
  99. AST_ObjectProperty,
  100. AST_ObjectSetter,
  101. AST_PrefixedTemplateString,
  102. AST_PrivateGetter,
  103. AST_PrivateMethod,
  104. AST_PrivateSetter,
  105. AST_PropAccess,
  106. AST_RegExp,
  107. AST_Return,
  108. AST_Sequence,
  109. AST_SimpleStatement,
  110. AST_Statement,
  111. AST_String,
  112. AST_Sub,
  113. AST_Super,
  114. AST_Switch,
  115. AST_SwitchBranch,
  116. AST_Symbol,
  117. AST_SymbolCatch,
  118. AST_SymbolClass,
  119. AST_SymbolClassProperty,
  120. AST_SymbolConst,
  121. AST_SymbolDefClass,
  122. AST_SymbolDefun,
  123. AST_SymbolExport,
  124. AST_SymbolExportForeign,
  125. AST_SymbolFunarg,
  126. AST_SymbolImport,
  127. AST_SymbolImportForeign,
  128. AST_SymbolLambda,
  129. AST_SymbolLet,
  130. AST_SymbolMethod,
  131. AST_SymbolRef,
  132. AST_SymbolVar,
  133. AST_TemplateSegment,
  134. AST_TemplateString,
  135. AST_This,
  136. AST_Throw,
  137. AST_Token,
  138. AST_Toplevel,
  139. AST_True,
  140. AST_Try,
  141. AST_Unary,
  142. AST_UnaryPostfix,
  143. AST_UnaryPrefix,
  144. AST_Var,
  145. AST_VarDef,
  146. AST_While,
  147. AST_With,
  148. AST_Yield,
  149. } from "./ast.js";
  150. import { is_basic_identifier_string } from "./parse.js";
  151. (function() {
  152. var normalize_directives = function(body) {
  153. var in_directive = true;
  154. for (var i = 0; i < body.length; i++) {
  155. if (in_directive && body[i] instanceof AST_Statement && body[i].body instanceof AST_String) {
  156. body[i] = new AST_Directive({
  157. start: body[i].start,
  158. end: body[i].end,
  159. value: body[i].body.value
  160. });
  161. } else if (in_directive && !(body[i] instanceof AST_Statement && body[i].body instanceof AST_String)) {
  162. in_directive = false;
  163. }
  164. }
  165. return body;
  166. };
  167. const assert_clause_from_moz = (assertions) => {
  168. if (assertions && assertions.length > 0) {
  169. return new AST_Object({
  170. start: my_start_token(assertions),
  171. end: my_end_token(assertions),
  172. properties: assertions.map((assertion_kv) =>
  173. new AST_ObjectKeyVal({
  174. start: my_start_token(assertion_kv),
  175. end: my_end_token(assertion_kv),
  176. key: assertion_kv.key.name || assertion_kv.key.value,
  177. value: from_moz(assertion_kv.value)
  178. })
  179. )
  180. });
  181. }
  182. return null;
  183. };
  184. var MOZ_TO_ME = {
  185. Program: function(M) {
  186. return new AST_Toplevel({
  187. start: my_start_token(M),
  188. end: my_end_token(M),
  189. body: normalize_directives(M.body.map(from_moz))
  190. });
  191. },
  192. ArrayPattern: function(M) {
  193. return new AST_Destructuring({
  194. start: my_start_token(M),
  195. end: my_end_token(M),
  196. names: M.elements.map(function(elm) {
  197. if (elm === null) {
  198. return new AST_Hole();
  199. }
  200. return from_moz(elm);
  201. }),
  202. is_array: true
  203. });
  204. },
  205. ObjectPattern: function(M) {
  206. return new AST_Destructuring({
  207. start: my_start_token(M),
  208. end: my_end_token(M),
  209. names: M.properties.map(from_moz),
  210. is_array: false
  211. });
  212. },
  213. AssignmentPattern: function(M) {
  214. return new AST_DefaultAssign({
  215. start: my_start_token(M),
  216. end: my_end_token(M),
  217. left: from_moz(M.left),
  218. operator: "=",
  219. right: from_moz(M.right)
  220. });
  221. },
  222. SpreadElement: function(M) {
  223. return new AST_Expansion({
  224. start: my_start_token(M),
  225. end: my_end_token(M),
  226. expression: from_moz(M.argument)
  227. });
  228. },
  229. RestElement: function(M) {
  230. return new AST_Expansion({
  231. start: my_start_token(M),
  232. end: my_end_token(M),
  233. expression: from_moz(M.argument)
  234. });
  235. },
  236. TemplateElement: function(M) {
  237. return new AST_TemplateSegment({
  238. start: my_start_token(M),
  239. end: my_end_token(M),
  240. value: M.value.cooked,
  241. raw: M.value.raw
  242. });
  243. },
  244. TemplateLiteral: function(M) {
  245. var segments = [];
  246. for (var i = 0; i < M.quasis.length; i++) {
  247. segments.push(from_moz(M.quasis[i]));
  248. if (M.expressions[i]) {
  249. segments.push(from_moz(M.expressions[i]));
  250. }
  251. }
  252. return new AST_TemplateString({
  253. start: my_start_token(M),
  254. end: my_end_token(M),
  255. segments: segments
  256. });
  257. },
  258. TaggedTemplateExpression: function(M) {
  259. return new AST_PrefixedTemplateString({
  260. start: my_start_token(M),
  261. end: my_end_token(M),
  262. template_string: from_moz(M.quasi),
  263. prefix: from_moz(M.tag)
  264. });
  265. },
  266. FunctionDeclaration: function(M) {
  267. return new AST_Defun({
  268. start: my_start_token(M),
  269. end: my_end_token(M),
  270. name: from_moz(M.id),
  271. argnames: M.params.map(from_moz),
  272. is_generator: M.generator,
  273. async: M.async,
  274. body: normalize_directives(from_moz(M.body).body)
  275. });
  276. },
  277. FunctionExpression: function(M) {
  278. return new AST_Function({
  279. start: my_start_token(M),
  280. end: my_end_token(M),
  281. name: from_moz(M.id),
  282. argnames: M.params.map(from_moz),
  283. is_generator: M.generator,
  284. async: M.async,
  285. body: normalize_directives(from_moz(M.body).body)
  286. });
  287. },
  288. ArrowFunctionExpression: function(M) {
  289. const body = M.body.type === "BlockStatement"
  290. ? from_moz(M.body).body
  291. : [make_node(AST_Return, {}, { value: from_moz(M.body) })];
  292. return new AST_Arrow({
  293. start: my_start_token(M),
  294. end: my_end_token(M),
  295. argnames: M.params.map(from_moz),
  296. body,
  297. async: M.async,
  298. });
  299. },
  300. ExpressionStatement: function(M) {
  301. return new AST_SimpleStatement({
  302. start: my_start_token(M),
  303. end: my_end_token(M),
  304. body: from_moz(M.expression)
  305. });
  306. },
  307. TryStatement: function(M) {
  308. var handlers = M.handlers || [M.handler];
  309. if (handlers.length > 1 || M.guardedHandlers && M.guardedHandlers.length) {
  310. throw new Error("Multiple catch clauses are not supported.");
  311. }
  312. return new AST_Try({
  313. start : my_start_token(M),
  314. end : my_end_token(M),
  315. body : from_moz(M.block).body,
  316. bcatch : from_moz(handlers[0]),
  317. bfinally : M.finalizer ? new AST_Finally(from_moz(M.finalizer)) : null
  318. });
  319. },
  320. Property: function(M) {
  321. var key = M.key;
  322. var args = {
  323. start : my_start_token(key || M.value),
  324. end : my_end_token(M.value),
  325. key : key.type == "Identifier" ? key.name : key.value,
  326. value : from_moz(M.value)
  327. };
  328. if (M.computed) {
  329. args.key = from_moz(M.key);
  330. }
  331. if (M.method) {
  332. args.is_generator = M.value.generator;
  333. args.async = M.value.async;
  334. if (!M.computed) {
  335. args.key = new AST_SymbolMethod({ name: args.key });
  336. } else {
  337. args.key = from_moz(M.key);
  338. }
  339. return new AST_ConciseMethod(args);
  340. }
  341. if (M.kind == "init") {
  342. if (key.type != "Identifier" && key.type != "Literal") {
  343. args.key = from_moz(key);
  344. }
  345. return new AST_ObjectKeyVal(args);
  346. }
  347. if (typeof args.key === "string" || typeof args.key === "number") {
  348. args.key = new AST_SymbolMethod({
  349. name: args.key
  350. });
  351. }
  352. args.value = new AST_Accessor(args.value);
  353. if (M.kind == "get") return new AST_ObjectGetter(args);
  354. if (M.kind == "set") return new AST_ObjectSetter(args);
  355. if (M.kind == "method") {
  356. args.async = M.value.async;
  357. args.is_generator = M.value.generator;
  358. args.quote = M.computed ? "\"" : null;
  359. return new AST_ConciseMethod(args);
  360. }
  361. },
  362. MethodDefinition: function(M) {
  363. var args = {
  364. start : my_start_token(M),
  365. end : my_end_token(M),
  366. key : M.computed ? from_moz(M.key) : new AST_SymbolMethod({ name: M.key.name || M.key.value }),
  367. value : from_moz(M.value),
  368. static : M.static,
  369. };
  370. if (M.kind == "get") {
  371. return new AST_ObjectGetter(args);
  372. }
  373. if (M.kind == "set") {
  374. return new AST_ObjectSetter(args);
  375. }
  376. args.is_generator = M.value.generator;
  377. args.async = M.value.async;
  378. return new AST_ConciseMethod(args);
  379. },
  380. FieldDefinition: function(M) {
  381. let key;
  382. if (M.computed) {
  383. key = from_moz(M.key);
  384. } else {
  385. if (M.key.type !== "Identifier") throw new Error("Non-Identifier key in FieldDefinition");
  386. key = from_moz(M.key);
  387. }
  388. return new AST_ClassProperty({
  389. start : my_start_token(M),
  390. end : my_end_token(M),
  391. key,
  392. value : from_moz(M.value),
  393. static : M.static,
  394. });
  395. },
  396. PropertyDefinition: function(M) {
  397. let key;
  398. if (M.computed) {
  399. key = from_moz(M.key);
  400. } else {
  401. if (M.key.type !== "Identifier") throw new Error("Non-Identifier key in PropertyDefinition");
  402. key = from_moz(M.key);
  403. }
  404. return new AST_ClassProperty({
  405. start : my_start_token(M),
  406. end : my_end_token(M),
  407. key,
  408. value : from_moz(M.value),
  409. static : M.static,
  410. });
  411. },
  412. ArrayExpression: function(M) {
  413. return new AST_Array({
  414. start : my_start_token(M),
  415. end : my_end_token(M),
  416. elements : M.elements.map(function(elem) {
  417. return elem === null ? new AST_Hole() : from_moz(elem);
  418. })
  419. });
  420. },
  421. ObjectExpression: function(M) {
  422. return new AST_Object({
  423. start : my_start_token(M),
  424. end : my_end_token(M),
  425. properties : M.properties.map(function(prop) {
  426. if (prop.type === "SpreadElement") {
  427. return from_moz(prop);
  428. }
  429. prop.type = "Property";
  430. return from_moz(prop);
  431. })
  432. });
  433. },
  434. SequenceExpression: function(M) {
  435. return new AST_Sequence({
  436. start : my_start_token(M),
  437. end : my_end_token(M),
  438. expressions: M.expressions.map(from_moz)
  439. });
  440. },
  441. MemberExpression: function(M) {
  442. return new (M.computed ? AST_Sub : AST_Dot)({
  443. start : my_start_token(M),
  444. end : my_end_token(M),
  445. property : M.computed ? from_moz(M.property) : M.property.name,
  446. expression : from_moz(M.object),
  447. optional : M.optional || false
  448. });
  449. },
  450. ChainExpression: function(M) {
  451. return new AST_Chain({
  452. start : my_start_token(M),
  453. end : my_end_token(M),
  454. expression : from_moz(M.expression)
  455. });
  456. },
  457. SwitchCase: function(M) {
  458. return new (M.test ? AST_Case : AST_Default)({
  459. start : my_start_token(M),
  460. end : my_end_token(M),
  461. expression : from_moz(M.test),
  462. body : M.consequent.map(from_moz)
  463. });
  464. },
  465. VariableDeclaration: function(M) {
  466. return new (M.kind === "const" ? AST_Const :
  467. M.kind === "let" ? AST_Let : AST_Var)({
  468. start : my_start_token(M),
  469. end : my_end_token(M),
  470. definitions : M.declarations.map(from_moz)
  471. });
  472. },
  473. ImportDeclaration: function(M) {
  474. var imported_name = null;
  475. var imported_names = null;
  476. M.specifiers.forEach(function (specifier) {
  477. if (specifier.type === "ImportSpecifier") {
  478. if (!imported_names) { imported_names = []; }
  479. imported_names.push(new AST_NameMapping({
  480. start: my_start_token(specifier),
  481. end: my_end_token(specifier),
  482. foreign_name: from_moz(specifier.imported),
  483. name: from_moz(specifier.local)
  484. }));
  485. } else if (specifier.type === "ImportDefaultSpecifier") {
  486. imported_name = from_moz(specifier.local);
  487. } else if (specifier.type === "ImportNamespaceSpecifier") {
  488. if (!imported_names) { imported_names = []; }
  489. imported_names.push(new AST_NameMapping({
  490. start: my_start_token(specifier),
  491. end: my_end_token(specifier),
  492. foreign_name: new AST_SymbolImportForeign({ name: "*" }),
  493. name: from_moz(specifier.local)
  494. }));
  495. }
  496. });
  497. return new AST_Import({
  498. start : my_start_token(M),
  499. end : my_end_token(M),
  500. imported_name: imported_name,
  501. imported_names : imported_names,
  502. module_name : from_moz(M.source),
  503. assert_clause: assert_clause_from_moz(M.assertions)
  504. });
  505. },
  506. ExportAllDeclaration: function(M) {
  507. return new AST_Export({
  508. start: my_start_token(M),
  509. end: my_end_token(M),
  510. exported_names: [
  511. new AST_NameMapping({
  512. name: new AST_SymbolExportForeign({ name: "*" }),
  513. foreign_name: new AST_SymbolExportForeign({ name: "*" })
  514. })
  515. ],
  516. module_name: from_moz(M.source),
  517. assert_clause: assert_clause_from_moz(M.assertions)
  518. });
  519. },
  520. ExportNamedDeclaration: function(M) {
  521. return new AST_Export({
  522. start: my_start_token(M),
  523. end: my_end_token(M),
  524. exported_definition: from_moz(M.declaration),
  525. exported_names: M.specifiers && M.specifiers.length ? M.specifiers.map(function (specifier) {
  526. return new AST_NameMapping({
  527. foreign_name: from_moz(specifier.exported),
  528. name: from_moz(specifier.local)
  529. });
  530. }) : null,
  531. module_name: from_moz(M.source),
  532. assert_clause: assert_clause_from_moz(M.assertions)
  533. });
  534. },
  535. ExportDefaultDeclaration: function(M) {
  536. return new AST_Export({
  537. start: my_start_token(M),
  538. end: my_end_token(M),
  539. exported_value: from_moz(M.declaration),
  540. is_default: true
  541. });
  542. },
  543. Literal: function(M) {
  544. var val = M.value, args = {
  545. start : my_start_token(M),
  546. end : my_end_token(M)
  547. };
  548. var rx = M.regex;
  549. if (rx && rx.pattern) {
  550. // RegExpLiteral as per ESTree AST spec
  551. args.value = {
  552. source: rx.pattern,
  553. flags: rx.flags
  554. };
  555. return new AST_RegExp(args);
  556. } else if (rx) {
  557. // support legacy RegExp
  558. const rx_source = M.raw || val;
  559. const match = rx_source.match(/^\/(.*)\/(\w*)$/);
  560. if (!match) throw new Error("Invalid regex source " + rx_source);
  561. const [_, source, flags] = match;
  562. args.value = { source, flags };
  563. return new AST_RegExp(args);
  564. }
  565. if (val === null) return new AST_Null(args);
  566. switch (typeof val) {
  567. case "string":
  568. args.value = val;
  569. return new AST_String(args);
  570. case "number":
  571. args.value = val;
  572. args.raw = M.raw || val.toString();
  573. return new AST_Number(args);
  574. case "boolean":
  575. return new (val ? AST_True : AST_False)(args);
  576. }
  577. },
  578. MetaProperty: function(M) {
  579. if (M.meta.name === "new" && M.property.name === "target") {
  580. return new AST_NewTarget({
  581. start: my_start_token(M),
  582. end: my_end_token(M)
  583. });
  584. } else if (M.meta.name === "import" && M.property.name === "meta") {
  585. return new AST_ImportMeta({
  586. start: my_start_token(M),
  587. end: my_end_token(M)
  588. });
  589. }
  590. },
  591. Identifier: function(M) {
  592. var p = FROM_MOZ_STACK[FROM_MOZ_STACK.length - 2];
  593. return new ( p.type == "LabeledStatement" ? AST_Label
  594. : p.type == "VariableDeclarator" && p.id === M ? (p.kind == "const" ? AST_SymbolConst : p.kind == "let" ? AST_SymbolLet : AST_SymbolVar)
  595. : /Import.*Specifier/.test(p.type) ? (p.local === M ? AST_SymbolImport : AST_SymbolImportForeign)
  596. : p.type == "ExportSpecifier" ? (p.local === M ? AST_SymbolExport : AST_SymbolExportForeign)
  597. : p.type == "FunctionExpression" ? (p.id === M ? AST_SymbolLambda : AST_SymbolFunarg)
  598. : p.type == "FunctionDeclaration" ? (p.id === M ? AST_SymbolDefun : AST_SymbolFunarg)
  599. : p.type == "ArrowFunctionExpression" ? (p.params.includes(M)) ? AST_SymbolFunarg : AST_SymbolRef
  600. : p.type == "ClassExpression" ? (p.id === M ? AST_SymbolClass : AST_SymbolRef)
  601. : p.type == "Property" ? (p.key === M && p.computed || p.value === M ? AST_SymbolRef : AST_SymbolMethod)
  602. : p.type == "PropertyDefinition" || p.type === "FieldDefinition" ? (p.key === M && p.computed || p.value === M ? AST_SymbolRef : AST_SymbolClassProperty)
  603. : p.type == "ClassDeclaration" ? (p.id === M ? AST_SymbolDefClass : AST_SymbolRef)
  604. : p.type == "MethodDefinition" ? (p.computed ? AST_SymbolRef : AST_SymbolMethod)
  605. : p.type == "CatchClause" ? AST_SymbolCatch
  606. : p.type == "BreakStatement" || p.type == "ContinueStatement" ? AST_LabelRef
  607. : AST_SymbolRef)({
  608. start : my_start_token(M),
  609. end : my_end_token(M),
  610. name : M.name
  611. });
  612. },
  613. BigIntLiteral(M) {
  614. return new AST_BigInt({
  615. start : my_start_token(M),
  616. end : my_end_token(M),
  617. value : M.value
  618. });
  619. }
  620. };
  621. MOZ_TO_ME.UpdateExpression =
  622. MOZ_TO_ME.UnaryExpression = function To_Moz_Unary(M) {
  623. var prefix = "prefix" in M ? M.prefix
  624. : M.type == "UnaryExpression" ? true : false;
  625. return new (prefix ? AST_UnaryPrefix : AST_UnaryPostfix)({
  626. start : my_start_token(M),
  627. end : my_end_token(M),
  628. operator : M.operator,
  629. expression : from_moz(M.argument)
  630. });
  631. };
  632. MOZ_TO_ME.ClassDeclaration =
  633. MOZ_TO_ME.ClassExpression = function From_Moz_Class(M) {
  634. return new (M.type === "ClassDeclaration" ? AST_DefClass : AST_ClassExpression)({
  635. start : my_start_token(M),
  636. end : my_end_token(M),
  637. name : from_moz(M.id),
  638. extends : from_moz(M.superClass),
  639. properties: M.body.body.map(from_moz)
  640. });
  641. };
  642. map("EmptyStatement", AST_EmptyStatement);
  643. map("BlockStatement", AST_BlockStatement, "body@body");
  644. map("IfStatement", AST_If, "test>condition, consequent>body, alternate>alternative");
  645. map("LabeledStatement", AST_LabeledStatement, "label>label, body>body");
  646. map("BreakStatement", AST_Break, "label>label");
  647. map("ContinueStatement", AST_Continue, "label>label");
  648. map("WithStatement", AST_With, "object>expression, body>body");
  649. map("SwitchStatement", AST_Switch, "discriminant>expression, cases@body");
  650. map("ReturnStatement", AST_Return, "argument>value");
  651. map("ThrowStatement", AST_Throw, "argument>value");
  652. map("WhileStatement", AST_While, "test>condition, body>body");
  653. map("DoWhileStatement", AST_Do, "test>condition, body>body");
  654. map("ForStatement", AST_For, "init>init, test>condition, update>step, body>body");
  655. map("ForInStatement", AST_ForIn, "left>init, right>object, body>body");
  656. map("ForOfStatement", AST_ForOf, "left>init, right>object, body>body, await=await");
  657. map("AwaitExpression", AST_Await, "argument>expression");
  658. map("YieldExpression", AST_Yield, "argument>expression, delegate=is_star");
  659. map("DebuggerStatement", AST_Debugger);
  660. map("VariableDeclarator", AST_VarDef, "id>name, init>value");
  661. map("CatchClause", AST_Catch, "param>argname, body%body");
  662. map("ThisExpression", AST_This);
  663. map("Super", AST_Super);
  664. map("BinaryExpression", AST_Binary, "operator=operator, left>left, right>right");
  665. map("LogicalExpression", AST_Binary, "operator=operator, left>left, right>right");
  666. map("AssignmentExpression", AST_Assign, "operator=operator, left>left, right>right");
  667. map("ConditionalExpression", AST_Conditional, "test>condition, consequent>consequent, alternate>alternative");
  668. map("NewExpression", AST_New, "callee>expression, arguments@args");
  669. map("CallExpression", AST_Call, "callee>expression, optional=optional, arguments@args");
  670. def_to_moz(AST_Toplevel, function To_Moz_Program(M) {
  671. return to_moz_scope("Program", M);
  672. });
  673. def_to_moz(AST_Expansion, function To_Moz_Spread(M) {
  674. return {
  675. type: to_moz_in_destructuring() ? "RestElement" : "SpreadElement",
  676. argument: to_moz(M.expression)
  677. };
  678. });
  679. def_to_moz(AST_PrefixedTemplateString, function To_Moz_TaggedTemplateExpression(M) {
  680. return {
  681. type: "TaggedTemplateExpression",
  682. tag: to_moz(M.prefix),
  683. quasi: to_moz(M.template_string)
  684. };
  685. });
  686. def_to_moz(AST_TemplateString, function To_Moz_TemplateLiteral(M) {
  687. var quasis = [];
  688. var expressions = [];
  689. for (var i = 0; i < M.segments.length; i++) {
  690. if (i % 2 !== 0) {
  691. expressions.push(to_moz(M.segments[i]));
  692. } else {
  693. quasis.push({
  694. type: "TemplateElement",
  695. value: {
  696. raw: M.segments[i].raw,
  697. cooked: M.segments[i].value
  698. },
  699. tail: i === M.segments.length - 1
  700. });
  701. }
  702. }
  703. return {
  704. type: "TemplateLiteral",
  705. quasis: quasis,
  706. expressions: expressions
  707. };
  708. });
  709. def_to_moz(AST_Defun, function To_Moz_FunctionDeclaration(M) {
  710. return {
  711. type: "FunctionDeclaration",
  712. id: to_moz(M.name),
  713. params: M.argnames.map(to_moz),
  714. generator: M.is_generator,
  715. async: M.async,
  716. body: to_moz_scope("BlockStatement", M)
  717. };
  718. });
  719. def_to_moz(AST_Function, function To_Moz_FunctionExpression(M, parent) {
  720. var is_generator = parent.is_generator !== undefined ?
  721. parent.is_generator : M.is_generator;
  722. return {
  723. type: "FunctionExpression",
  724. id: to_moz(M.name),
  725. params: M.argnames.map(to_moz),
  726. generator: is_generator,
  727. async: M.async,
  728. body: to_moz_scope("BlockStatement", M)
  729. };
  730. });
  731. def_to_moz(AST_Arrow, function To_Moz_ArrowFunctionExpression(M) {
  732. var body = {
  733. type: "BlockStatement",
  734. body: M.body.map(to_moz)
  735. };
  736. return {
  737. type: "ArrowFunctionExpression",
  738. params: M.argnames.map(to_moz),
  739. async: M.async,
  740. body: body
  741. };
  742. });
  743. def_to_moz(AST_Destructuring, function To_Moz_ObjectPattern(M) {
  744. if (M.is_array) {
  745. return {
  746. type: "ArrayPattern",
  747. elements: M.names.map(to_moz)
  748. };
  749. }
  750. return {
  751. type: "ObjectPattern",
  752. properties: M.names.map(to_moz)
  753. };
  754. });
  755. def_to_moz(AST_Directive, function To_Moz_Directive(M) {
  756. return {
  757. type: "ExpressionStatement",
  758. expression: {
  759. type: "Literal",
  760. value: M.value,
  761. raw: M.print_to_string()
  762. },
  763. directive: M.value
  764. };
  765. });
  766. def_to_moz(AST_SimpleStatement, function To_Moz_ExpressionStatement(M) {
  767. return {
  768. type: "ExpressionStatement",
  769. expression: to_moz(M.body)
  770. };
  771. });
  772. def_to_moz(AST_SwitchBranch, function To_Moz_SwitchCase(M) {
  773. return {
  774. type: "SwitchCase",
  775. test: to_moz(M.expression),
  776. consequent: M.body.map(to_moz)
  777. };
  778. });
  779. def_to_moz(AST_Try, function To_Moz_TryStatement(M) {
  780. return {
  781. type: "TryStatement",
  782. block: to_moz_block(M),
  783. handler: to_moz(M.bcatch),
  784. guardedHandlers: [],
  785. finalizer: to_moz(M.bfinally)
  786. };
  787. });
  788. def_to_moz(AST_Catch, function To_Moz_CatchClause(M) {
  789. return {
  790. type: "CatchClause",
  791. param: to_moz(M.argname),
  792. guard: null,
  793. body: to_moz_block(M)
  794. };
  795. });
  796. def_to_moz(AST_Definitions, function To_Moz_VariableDeclaration(M) {
  797. return {
  798. type: "VariableDeclaration",
  799. kind:
  800. M instanceof AST_Const ? "const" :
  801. M instanceof AST_Let ? "let" : "var",
  802. declarations: M.definitions.map(to_moz)
  803. };
  804. });
  805. const assert_clause_to_moz = assert_clause => {
  806. const assertions = [];
  807. if (assert_clause) {
  808. for (const { key, value } of assert_clause.properties) {
  809. const key_moz = is_basic_identifier_string(key)
  810. ? { type: "Identifier", name: key }
  811. : { type: "Literal", value: key, raw: JSON.stringify(key) };
  812. assertions.push({
  813. type: "ImportAttribute",
  814. key: key_moz,
  815. value: to_moz(value)
  816. });
  817. }
  818. }
  819. return assertions;
  820. };
  821. def_to_moz(AST_Export, function To_Moz_ExportDeclaration(M) {
  822. if (M.exported_names) {
  823. if (M.exported_names[0].name.name === "*") {
  824. return {
  825. type: "ExportAllDeclaration",
  826. source: to_moz(M.module_name),
  827. assertions: assert_clause_to_moz(M.assert_clause)
  828. };
  829. }
  830. return {
  831. type: "ExportNamedDeclaration",
  832. specifiers: M.exported_names.map(function (name_mapping) {
  833. return {
  834. type: "ExportSpecifier",
  835. exported: to_moz(name_mapping.foreign_name),
  836. local: to_moz(name_mapping.name)
  837. };
  838. }),
  839. declaration: to_moz(M.exported_definition),
  840. source: to_moz(M.module_name),
  841. assertions: assert_clause_to_moz(M.assert_clause)
  842. };
  843. }
  844. return {
  845. type: M.is_default ? "ExportDefaultDeclaration" : "ExportNamedDeclaration",
  846. declaration: to_moz(M.exported_value || M.exported_definition)
  847. };
  848. });
  849. def_to_moz(AST_Import, function To_Moz_ImportDeclaration(M) {
  850. var specifiers = [];
  851. if (M.imported_name) {
  852. specifiers.push({
  853. type: "ImportDefaultSpecifier",
  854. local: to_moz(M.imported_name)
  855. });
  856. }
  857. if (M.imported_names && M.imported_names[0].foreign_name.name === "*") {
  858. specifiers.push({
  859. type: "ImportNamespaceSpecifier",
  860. local: to_moz(M.imported_names[0].name)
  861. });
  862. } else if (M.imported_names) {
  863. M.imported_names.forEach(function(name_mapping) {
  864. specifiers.push({
  865. type: "ImportSpecifier",
  866. local: to_moz(name_mapping.name),
  867. imported: to_moz(name_mapping.foreign_name)
  868. });
  869. });
  870. }
  871. return {
  872. type: "ImportDeclaration",
  873. specifiers: specifiers,
  874. source: to_moz(M.module_name),
  875. assertions: assert_clause_to_moz(M.assert_clause)
  876. };
  877. });
  878. def_to_moz(AST_ImportMeta, function To_Moz_MetaProperty() {
  879. return {
  880. type: "MetaProperty",
  881. meta: {
  882. type: "Identifier",
  883. name: "import"
  884. },
  885. property: {
  886. type: "Identifier",
  887. name: "meta"
  888. }
  889. };
  890. });
  891. def_to_moz(AST_Sequence, function To_Moz_SequenceExpression(M) {
  892. return {
  893. type: "SequenceExpression",
  894. expressions: M.expressions.map(to_moz)
  895. };
  896. });
  897. def_to_moz(AST_DotHash, function To_Moz_PrivateMemberExpression(M) {
  898. return {
  899. type: "MemberExpression",
  900. object: to_moz(M.expression),
  901. computed: false,
  902. property: {
  903. type: "PrivateIdentifier",
  904. name: M.property
  905. },
  906. optional: M.optional
  907. };
  908. });
  909. def_to_moz(AST_PropAccess, function To_Moz_MemberExpression(M) {
  910. var isComputed = M instanceof AST_Sub;
  911. return {
  912. type: "MemberExpression",
  913. object: to_moz(M.expression),
  914. computed: isComputed,
  915. property: isComputed ? to_moz(M.property) : {type: "Identifier", name: M.property},
  916. optional: M.optional
  917. };
  918. });
  919. def_to_moz(AST_Chain, function To_Moz_ChainExpression(M) {
  920. return {
  921. type: "ChainExpression",
  922. expression: to_moz(M.expression)
  923. };
  924. });
  925. def_to_moz(AST_Unary, function To_Moz_Unary(M) {
  926. return {
  927. type: M.operator == "++" || M.operator == "--" ? "UpdateExpression" : "UnaryExpression",
  928. operator: M.operator,
  929. prefix: M instanceof AST_UnaryPrefix,
  930. argument: to_moz(M.expression)
  931. };
  932. });
  933. def_to_moz(AST_Binary, function To_Moz_BinaryExpression(M) {
  934. if (M.operator == "=" && to_moz_in_destructuring()) {
  935. return {
  936. type: "AssignmentPattern",
  937. left: to_moz(M.left),
  938. right: to_moz(M.right)
  939. };
  940. }
  941. const type = M.operator == "&&" || M.operator == "||" || M.operator === "??"
  942. ? "LogicalExpression"
  943. : "BinaryExpression";
  944. return {
  945. type,
  946. left: to_moz(M.left),
  947. operator: M.operator,
  948. right: to_moz(M.right)
  949. };
  950. });
  951. def_to_moz(AST_Array, function To_Moz_ArrayExpression(M) {
  952. return {
  953. type: "ArrayExpression",
  954. elements: M.elements.map(to_moz)
  955. };
  956. });
  957. def_to_moz(AST_Object, function To_Moz_ObjectExpression(M) {
  958. return {
  959. type: "ObjectExpression",
  960. properties: M.properties.map(to_moz)
  961. };
  962. });
  963. def_to_moz(AST_ObjectProperty, function To_Moz_Property(M, parent) {
  964. var key = M.key instanceof AST_Node ? to_moz(M.key) : {
  965. type: "Identifier",
  966. value: M.key
  967. };
  968. if (typeof M.key === "number") {
  969. key = {
  970. type: "Literal",
  971. value: Number(M.key)
  972. };
  973. }
  974. if (typeof M.key === "string") {
  975. key = {
  976. type: "Identifier",
  977. name: M.key
  978. };
  979. }
  980. var kind;
  981. var string_or_num = typeof M.key === "string" || typeof M.key === "number";
  982. var computed = string_or_num ? false : !(M.key instanceof AST_Symbol) || M.key instanceof AST_SymbolRef;
  983. if (M instanceof AST_ObjectKeyVal) {
  984. kind = "init";
  985. computed = !string_or_num;
  986. } else
  987. if (M instanceof AST_ObjectGetter) {
  988. kind = "get";
  989. } else
  990. if (M instanceof AST_ObjectSetter) {
  991. kind = "set";
  992. }
  993. if (M instanceof AST_PrivateGetter || M instanceof AST_PrivateSetter) {
  994. const kind = M instanceof AST_PrivateGetter ? "get" : "set";
  995. return {
  996. type: "MethodDefinition",
  997. computed: false,
  998. kind: kind,
  999. static: M.static,
  1000. key: {
  1001. type: "PrivateIdentifier",
  1002. name: M.key.name
  1003. },
  1004. value: to_moz(M.value)
  1005. };
  1006. }
  1007. if (M instanceof AST_ClassPrivateProperty) {
  1008. return {
  1009. type: "PropertyDefinition",
  1010. key: {
  1011. type: "PrivateIdentifier",
  1012. name: M.key.name
  1013. },
  1014. value: to_moz(M.value),
  1015. computed: false,
  1016. static: M.static
  1017. };
  1018. }
  1019. if (M instanceof AST_ClassProperty) {
  1020. return {
  1021. type: "PropertyDefinition",
  1022. key,
  1023. value: to_moz(M.value),
  1024. computed,
  1025. static: M.static
  1026. };
  1027. }
  1028. if (parent instanceof AST_Class) {
  1029. return {
  1030. type: "MethodDefinition",
  1031. computed: computed,
  1032. kind: kind,
  1033. static: M.static,
  1034. key: to_moz(M.key),
  1035. value: to_moz(M.value)
  1036. };
  1037. }
  1038. return {
  1039. type: "Property",
  1040. computed: computed,
  1041. kind: kind,
  1042. key: key,
  1043. value: to_moz(M.value)
  1044. };
  1045. });
  1046. def_to_moz(AST_ConciseMethod, function To_Moz_MethodDefinition(M, parent) {
  1047. if (parent instanceof AST_Object) {
  1048. return {
  1049. type: "Property",
  1050. computed: !(M.key instanceof AST_Symbol) || M.key instanceof AST_SymbolRef,
  1051. kind: "init",
  1052. method: true,
  1053. shorthand: false,
  1054. key: to_moz(M.key),
  1055. value: to_moz(M.value)
  1056. };
  1057. }
  1058. const key = M instanceof AST_PrivateMethod
  1059. ? {
  1060. type: "PrivateIdentifier",
  1061. name: M.key.name
  1062. }
  1063. : to_moz(M.key);
  1064. return {
  1065. type: "MethodDefinition",
  1066. kind: M.key === "constructor" ? "constructor" : "method",
  1067. key,
  1068. value: to_moz(M.value),
  1069. computed: !(M.key instanceof AST_Symbol) || M.key instanceof AST_SymbolRef,
  1070. static: M.static,
  1071. };
  1072. });
  1073. def_to_moz(AST_Class, function To_Moz_Class(M) {
  1074. var type = M instanceof AST_ClassExpression ? "ClassExpression" : "ClassDeclaration";
  1075. return {
  1076. type: type,
  1077. superClass: to_moz(M.extends),
  1078. id: M.name ? to_moz(M.name) : null,
  1079. body: {
  1080. type: "ClassBody",
  1081. body: M.properties.map(to_moz)
  1082. }
  1083. };
  1084. });
  1085. def_to_moz(AST_NewTarget, function To_Moz_MetaProperty() {
  1086. return {
  1087. type: "MetaProperty",
  1088. meta: {
  1089. type: "Identifier",
  1090. name: "new"
  1091. },
  1092. property: {
  1093. type: "Identifier",
  1094. name: "target"
  1095. }
  1096. };
  1097. });
  1098. def_to_moz(AST_Symbol, function To_Moz_Identifier(M, parent) {
  1099. if (M instanceof AST_SymbolMethod && parent.quote) {
  1100. return {
  1101. type: "Literal",
  1102. value: M.name
  1103. };
  1104. }
  1105. var def = M.definition();
  1106. return {
  1107. type: "Identifier",
  1108. name: def ? def.mangled_name || def.name : M.name
  1109. };
  1110. });
  1111. def_to_moz(AST_RegExp, function To_Moz_RegExpLiteral(M) {
  1112. const pattern = M.value.source;
  1113. const flags = M.value.flags;
  1114. return {
  1115. type: "Literal",
  1116. value: null,
  1117. raw: M.print_to_string(),
  1118. regex: { pattern, flags }
  1119. };
  1120. });
  1121. def_to_moz(AST_Constant, function To_Moz_Literal(M) {
  1122. var value = M.value;
  1123. return {
  1124. type: "Literal",
  1125. value: value,
  1126. raw: M.raw || M.print_to_string()
  1127. };
  1128. });
  1129. def_to_moz(AST_Atom, function To_Moz_Atom(M) {
  1130. return {
  1131. type: "Identifier",
  1132. name: String(M.value)
  1133. };
  1134. });
  1135. def_to_moz(AST_BigInt, M => ({
  1136. type: "BigIntLiteral",
  1137. value: M.value
  1138. }));
  1139. AST_Boolean.DEFMETHOD("to_mozilla_ast", AST_Constant.prototype.to_mozilla_ast);
  1140. AST_Null.DEFMETHOD("to_mozilla_ast", AST_Constant.prototype.to_mozilla_ast);
  1141. AST_Hole.DEFMETHOD("to_mozilla_ast", function To_Moz_ArrayHole() { return null; });
  1142. AST_Block.DEFMETHOD("to_mozilla_ast", AST_BlockStatement.prototype.to_mozilla_ast);
  1143. AST_Lambda.DEFMETHOD("to_mozilla_ast", AST_Function.prototype.to_mozilla_ast);
  1144. /* -----[ tools ]----- */
  1145. function my_start_token(moznode) {
  1146. var loc = moznode.loc, start = loc && loc.start;
  1147. var range = moznode.range;
  1148. return new AST_Token(
  1149. "",
  1150. "",
  1151. start && start.line || 0,
  1152. start && start.column || 0,
  1153. range ? range [0] : moznode.start,
  1154. false,
  1155. [],
  1156. [],
  1157. loc && loc.source,
  1158. );
  1159. }
  1160. function my_end_token(moznode) {
  1161. var loc = moznode.loc, end = loc && loc.end;
  1162. var range = moznode.range;
  1163. return new AST_Token(
  1164. "",
  1165. "",
  1166. end && end.line || 0,
  1167. end && end.column || 0,
  1168. range ? range [0] : moznode.end,
  1169. false,
  1170. [],
  1171. [],
  1172. loc && loc.source,
  1173. );
  1174. }
  1175. function map(moztype, mytype, propmap) {
  1176. var moz_to_me = "function From_Moz_" + moztype + "(M){\n";
  1177. moz_to_me += "return new U2." + mytype.name + "({\n" +
  1178. "start: my_start_token(M),\n" +
  1179. "end: my_end_token(M)";
  1180. var me_to_moz = "function To_Moz_" + moztype + "(M){\n";
  1181. me_to_moz += "return {\n" +
  1182. "type: " + JSON.stringify(moztype);
  1183. if (propmap) propmap.split(/\s*,\s*/).forEach(function(prop) {
  1184. var m = /([a-z0-9$_]+)([=@>%])([a-z0-9$_]+)/i.exec(prop);
  1185. if (!m) throw new Error("Can't understand property map: " + prop);
  1186. var moz = m[1], how = m[2], my = m[3];
  1187. moz_to_me += ",\n" + my + ": ";
  1188. me_to_moz += ",\n" + moz + ": ";
  1189. switch (how) {
  1190. case "@":
  1191. moz_to_me += "M." + moz + ".map(from_moz)";
  1192. me_to_moz += "M." + my + ".map(to_moz)";
  1193. break;
  1194. case ">":
  1195. moz_to_me += "from_moz(M." + moz + ")";
  1196. me_to_moz += "to_moz(M." + my + ")";
  1197. break;
  1198. case "=":
  1199. moz_to_me += "M." + moz;
  1200. me_to_moz += "M." + my;
  1201. break;
  1202. case "%":
  1203. moz_to_me += "from_moz(M." + moz + ").body";
  1204. me_to_moz += "to_moz_block(M)";
  1205. break;
  1206. default:
  1207. throw new Error("Can't understand operator in propmap: " + prop);
  1208. }
  1209. });
  1210. moz_to_me += "\n})\n}";
  1211. me_to_moz += "\n}\n}";
  1212. moz_to_me = new Function("U2", "my_start_token", "my_end_token", "from_moz", "return(" + moz_to_me + ")")(
  1213. ast, my_start_token, my_end_token, from_moz
  1214. );
  1215. me_to_moz = new Function("to_moz", "to_moz_block", "to_moz_scope", "return(" + me_to_moz + ")")(
  1216. to_moz, to_moz_block, to_moz_scope
  1217. );
  1218. MOZ_TO_ME[moztype] = moz_to_me;
  1219. def_to_moz(mytype, me_to_moz);
  1220. }
  1221. var FROM_MOZ_STACK = null;
  1222. function from_moz(node) {
  1223. FROM_MOZ_STACK.push(node);
  1224. var ret = node != null ? MOZ_TO_ME[node.type](node) : null;
  1225. FROM_MOZ_STACK.pop();
  1226. return ret;
  1227. }
  1228. AST_Node.from_mozilla_ast = function(node) {
  1229. var save_stack = FROM_MOZ_STACK;
  1230. FROM_MOZ_STACK = [];
  1231. var ast = from_moz(node);
  1232. FROM_MOZ_STACK = save_stack;
  1233. return ast;
  1234. };
  1235. function set_moz_loc(mynode, moznode) {
  1236. var start = mynode.start;
  1237. var end = mynode.end;
  1238. if (!(start && end)) {
  1239. return moznode;
  1240. }
  1241. if (start.pos != null && end.endpos != null) {
  1242. moznode.range = [start.pos, end.endpos];
  1243. }
  1244. if (start.line) {
  1245. moznode.loc = {
  1246. start: {line: start.line, column: start.col},
  1247. end: end.endline ? {line: end.endline, column: end.endcol} : null
  1248. };
  1249. if (start.file) {
  1250. moznode.loc.source = start.file;
  1251. }
  1252. }
  1253. return moznode;
  1254. }
  1255. function def_to_moz(mytype, handler) {
  1256. mytype.DEFMETHOD("to_mozilla_ast", function(parent) {
  1257. return set_moz_loc(this, handler(this, parent));
  1258. });
  1259. }
  1260. var TO_MOZ_STACK = null;
  1261. function to_moz(node) {
  1262. if (TO_MOZ_STACK === null) { TO_MOZ_STACK = []; }
  1263. TO_MOZ_STACK.push(node);
  1264. var ast = node != null ? node.to_mozilla_ast(TO_MOZ_STACK[TO_MOZ_STACK.length - 2]) : null;
  1265. TO_MOZ_STACK.pop();
  1266. if (TO_MOZ_STACK.length === 0) { TO_MOZ_STACK = null; }
  1267. return ast;
  1268. }
  1269. function to_moz_in_destructuring() {
  1270. var i = TO_MOZ_STACK.length;
  1271. while (i--) {
  1272. if (TO_MOZ_STACK[i] instanceof AST_Destructuring) {
  1273. return true;
  1274. }
  1275. }
  1276. return false;
  1277. }
  1278. function to_moz_block(node) {
  1279. return {
  1280. type: "BlockStatement",
  1281. body: node.body.map(to_moz)
  1282. };
  1283. }
  1284. function to_moz_scope(type, node) {
  1285. var body = node.body.map(to_moz);
  1286. if (node.body[0] instanceof AST_SimpleStatement && node.body[0].body instanceof AST_String) {
  1287. body.unshift(to_moz(new AST_EmptyStatement(node.body[0])));
  1288. }
  1289. return {
  1290. type: type,
  1291. body: body
  1292. };
  1293. }
  1294. })();