Remove modules from source

This commit is contained in:
Federico Grandi
2019-12-14 21:58:11 +01:00
parent f118062594
commit e5272e4c09
4269 changed files with 0 additions and 1074858 deletions

View File

@@ -1,39 +0,0 @@
"use strict";
const h = require("./helpers");
const PatternMatch = require("./pattern-match");
module.exports = t => {
// small abstractions
const not = node => t.unaryExpression("!", node);
const notnot = node => not(not(node));
const or = (a, b) => t.logicalExpression("||", a, b);
const and = (a, b) => t.logicalExpression("&&", a, b);
function simplifyPatterns(path) {
const test = path.get("test");
const consequent = path.get("consequent");
const alternate = path.get("alternate");
const _h$typeSymbols = h.typeSymbols(t),
EX = _h$typeSymbols.Expression; // Convention:
// ===============
// for each pattern [test, consequent, alternate, handler(expr, cons, alt)]
const matcher = new PatternMatch([[EX, true, false, e => notnot(e)], [EX, false, true, e => not(e)], [EX, true, EX, (e, c, a) => or(notnot(e), a)], [EX, false, EX, (e, c, a) => and(not(e), a)], [EX, EX, true, (e, c) => or(not(e), c)], [EX, EX, false, (e, c) => and(notnot(e), c)]]);
const result = matcher.match([test, consequent, alternate], h.isPatternMatchesPath(t));
if (result.match) {
path.replaceWith(result.value(test.node, consequent.node, alternate.node));
}
}
return {
simplifyPatterns
};
};