fuse-box
Version:
Fuse-Box a bundler that does it right
17 lines (15 loc) • 455 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class OwnVariable {
static onNode(file, node, parent) {
const analysis = file.analysis;
if (node.type === "Identifier") {
if (node.name === "$fuse$") {
analysis.fuseBoxVariable = parent.object.name;
}
}
}
static onEnd() { }
}
exports.OwnVariable = OwnVariable;
//# sourceMappingURL=OwnVariable.js.map