equivalent-to.js 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. import {
  2. AST_Array,
  3. AST_Atom,
  4. AST_Await,
  5. AST_BigInt,
  6. AST_Binary,
  7. AST_Block,
  8. AST_Call,
  9. AST_Catch,
  10. AST_Chain,
  11. AST_Class,
  12. AST_ClassProperty,
  13. AST_ConciseMethod,
  14. AST_Conditional,
  15. AST_Debugger,
  16. AST_Definitions,
  17. AST_Destructuring,
  18. AST_Directive,
  19. AST_Do,
  20. AST_Dot,
  21. AST_DotHash,
  22. AST_EmptyStatement,
  23. AST_Expansion,
  24. AST_Export,
  25. AST_Finally,
  26. AST_For,
  27. AST_ForIn,
  28. AST_ForOf,
  29. AST_If,
  30. AST_Import,
  31. AST_ImportMeta,
  32. AST_Jump,
  33. AST_LabeledStatement,
  34. AST_Lambda,
  35. AST_LoopControl,
  36. AST_NameMapping,
  37. AST_NewTarget,
  38. AST_Node,
  39. AST_Number,
  40. AST_Object,
  41. AST_ObjectGetter,
  42. AST_ObjectKeyVal,
  43. AST_ObjectProperty,
  44. AST_ObjectSetter,
  45. AST_PrefixedTemplateString,
  46. AST_PropAccess,
  47. AST_RegExp,
  48. AST_Sequence,
  49. AST_SimpleStatement,
  50. AST_String,
  51. AST_Super,
  52. AST_Switch,
  53. AST_SwitchBranch,
  54. AST_Symbol,
  55. AST_TemplateSegment,
  56. AST_TemplateString,
  57. AST_This,
  58. AST_Toplevel,
  59. AST_Try,
  60. AST_Unary,
  61. AST_VarDef,
  62. AST_While,
  63. AST_With,
  64. AST_Yield
  65. } from "./ast.js";
  66. const shallow_cmp = (node1, node2) => {
  67. return (
  68. node1 === null && node2 === null
  69. || node1.TYPE === node2.TYPE && node1.shallow_cmp(node2)
  70. );
  71. };
  72. export const equivalent_to = (tree1, tree2) => {
  73. if (!shallow_cmp(tree1, tree2)) return false;
  74. const walk_1_state = [tree1];
  75. const walk_2_state = [tree2];
  76. const walk_1_push = walk_1_state.push.bind(walk_1_state);
  77. const walk_2_push = walk_2_state.push.bind(walk_2_state);
  78. while (walk_1_state.length && walk_2_state.length) {
  79. const node_1 = walk_1_state.pop();
  80. const node_2 = walk_2_state.pop();
  81. if (!shallow_cmp(node_1, node_2)) return false;
  82. node_1._children_backwards(walk_1_push);
  83. node_2._children_backwards(walk_2_push);
  84. if (walk_1_state.length !== walk_2_state.length) {
  85. // Different number of children
  86. return false;
  87. }
  88. }
  89. return walk_1_state.length == 0 && walk_2_state.length == 0;
  90. };
  91. // Creates a shallow compare function
  92. const mkshallow = (props) => {
  93. const comparisons = Object
  94. .keys(props)
  95. .map(key => {
  96. if (props[key] === "eq") {
  97. return `this.${key} === other.${key}`;
  98. } else if (props[key] === "exist") {
  99. return `(this.${key} == null ? other.${key} == null : this.${key} === other.${key})`;
  100. } else {
  101. throw new Error(`mkshallow: Unexpected instruction: ${props[key]}`);
  102. }
  103. })
  104. .join(" && ");
  105. return new Function("other", "return " + comparisons);
  106. };
  107. const pass_through = () => true;
  108. AST_Node.prototype.shallow_cmp = function () {
  109. throw new Error("did not find a shallow_cmp function for " + this.constructor.name);
  110. };
  111. AST_Debugger.prototype.shallow_cmp = pass_through;
  112. AST_Directive.prototype.shallow_cmp = mkshallow({ value: "eq" });
  113. AST_SimpleStatement.prototype.shallow_cmp = pass_through;
  114. AST_Block.prototype.shallow_cmp = pass_through;
  115. AST_EmptyStatement.prototype.shallow_cmp = pass_through;
  116. AST_LabeledStatement.prototype.shallow_cmp = mkshallow({ "label.name": "eq" });
  117. AST_Do.prototype.shallow_cmp = pass_through;
  118. AST_While.prototype.shallow_cmp = pass_through;
  119. AST_For.prototype.shallow_cmp = mkshallow({
  120. init: "exist",
  121. condition: "exist",
  122. step: "exist"
  123. });
  124. AST_ForIn.prototype.shallow_cmp = pass_through;
  125. AST_ForOf.prototype.shallow_cmp = pass_through;
  126. AST_With.prototype.shallow_cmp = pass_through;
  127. AST_Toplevel.prototype.shallow_cmp = pass_through;
  128. AST_Expansion.prototype.shallow_cmp = pass_through;
  129. AST_Lambda.prototype.shallow_cmp = mkshallow({
  130. is_generator: "eq",
  131. async: "eq"
  132. });
  133. AST_Destructuring.prototype.shallow_cmp = mkshallow({
  134. is_array: "eq"
  135. });
  136. AST_PrefixedTemplateString.prototype.shallow_cmp = pass_through;
  137. AST_TemplateString.prototype.shallow_cmp = pass_through;
  138. AST_TemplateSegment.prototype.shallow_cmp = mkshallow({
  139. "value": "eq"
  140. });
  141. AST_Jump.prototype.shallow_cmp = pass_through;
  142. AST_LoopControl.prototype.shallow_cmp = pass_through;
  143. AST_Await.prototype.shallow_cmp = pass_through;
  144. AST_Yield.prototype.shallow_cmp = mkshallow({
  145. is_star: "eq"
  146. });
  147. AST_If.prototype.shallow_cmp = mkshallow({
  148. alternative: "exist"
  149. });
  150. AST_Switch.prototype.shallow_cmp = pass_through;
  151. AST_SwitchBranch.prototype.shallow_cmp = pass_through;
  152. AST_Try.prototype.shallow_cmp = mkshallow({
  153. bcatch: "exist",
  154. bfinally: "exist"
  155. });
  156. AST_Catch.prototype.shallow_cmp = mkshallow({
  157. argname: "exist"
  158. });
  159. AST_Finally.prototype.shallow_cmp = pass_through;
  160. AST_Definitions.prototype.shallow_cmp = pass_through;
  161. AST_VarDef.prototype.shallow_cmp = mkshallow({
  162. value: "exist"
  163. });
  164. AST_NameMapping.prototype.shallow_cmp = pass_through;
  165. AST_Import.prototype.shallow_cmp = mkshallow({
  166. imported_name: "exist",
  167. imported_names: "exist"
  168. });
  169. AST_ImportMeta.prototype.shallow_cmp = pass_through;
  170. AST_Export.prototype.shallow_cmp = mkshallow({
  171. exported_definition: "exist",
  172. exported_value: "exist",
  173. exported_names: "exist",
  174. module_name: "eq",
  175. is_default: "eq",
  176. });
  177. AST_Call.prototype.shallow_cmp = pass_through;
  178. AST_Sequence.prototype.shallow_cmp = pass_through;
  179. AST_PropAccess.prototype.shallow_cmp = pass_through;
  180. AST_Chain.prototype.shallow_cmp = pass_through;
  181. AST_Dot.prototype.shallow_cmp = mkshallow({
  182. property: "eq"
  183. });
  184. AST_DotHash.prototype.shallow_cmp = mkshallow({
  185. property: "eq"
  186. });
  187. AST_Unary.prototype.shallow_cmp = mkshallow({
  188. operator: "eq"
  189. });
  190. AST_Binary.prototype.shallow_cmp = mkshallow({
  191. operator: "eq"
  192. });
  193. AST_Conditional.prototype.shallow_cmp = pass_through;
  194. AST_Array.prototype.shallow_cmp = pass_through;
  195. AST_Object.prototype.shallow_cmp = pass_through;
  196. AST_ObjectProperty.prototype.shallow_cmp = pass_through;
  197. AST_ObjectKeyVal.prototype.shallow_cmp = mkshallow({
  198. key: "eq"
  199. });
  200. AST_ObjectSetter.prototype.shallow_cmp = mkshallow({
  201. static: "eq"
  202. });
  203. AST_ObjectGetter.prototype.shallow_cmp = mkshallow({
  204. static: "eq"
  205. });
  206. AST_ConciseMethod.prototype.shallow_cmp = mkshallow({
  207. static: "eq",
  208. is_generator: "eq",
  209. async: "eq",
  210. });
  211. AST_Class.prototype.shallow_cmp = mkshallow({
  212. name: "exist",
  213. extends: "exist",
  214. });
  215. AST_ClassProperty.prototype.shallow_cmp = mkshallow({
  216. static: "eq"
  217. });
  218. AST_Symbol.prototype.shallow_cmp = mkshallow({
  219. name: "eq"
  220. });
  221. AST_NewTarget.prototype.shallow_cmp = pass_through;
  222. AST_This.prototype.shallow_cmp = pass_through;
  223. AST_Super.prototype.shallow_cmp = pass_through;
  224. AST_String.prototype.shallow_cmp = mkshallow({
  225. value: "eq"
  226. });
  227. AST_Number.prototype.shallow_cmp = mkshallow({
  228. value: "eq"
  229. });
  230. AST_BigInt.prototype.shallow_cmp = mkshallow({
  231. value: "eq"
  232. });
  233. AST_RegExp.prototype.shallow_cmp = function (other) {
  234. return (
  235. this.value.flags === other.value.flags
  236. && this.value.source === other.value.source
  237. );
  238. };
  239. AST_Atom.prototype.shallow_cmp = pass_through;