WIP - add extractor, generate snippet_data
This commit is contained in:
50
node_modules/@babel/plugin-transform-react-jsx-self/lib/index.js
generated
vendored
Normal file
50
node_modules/@babel/plugin-transform-react-jsx-self/lib/index.js
generated
vendored
Normal file
@ -0,0 +1,50 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
|
||||
function _helperPluginUtils() {
|
||||
const data = require("@babel/helper-plugin-utils");
|
||||
|
||||
_helperPluginUtils = function () {
|
||||
return data;
|
||||
};
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
function _core() {
|
||||
const data = require("@babel/core");
|
||||
|
||||
_core = function () {
|
||||
return data;
|
||||
};
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
const TRACE_ID = "__self";
|
||||
|
||||
var _default = (0, _helperPluginUtils().declare)(api => {
|
||||
api.assertVersion(7);
|
||||
const visitor = {
|
||||
JSXOpeningElement({
|
||||
node
|
||||
}) {
|
||||
const id = _core().types.jsxIdentifier(TRACE_ID);
|
||||
|
||||
const trace = _core().types.thisExpression();
|
||||
|
||||
node.attributes.push(_core().types.jsxAttribute(id, _core().types.jsxExpressionContainer(trace)));
|
||||
}
|
||||
|
||||
};
|
||||
return {
|
||||
name: "transform-react-jsx-self",
|
||||
visitor
|
||||
};
|
||||
});
|
||||
|
||||
exports.default = _default;
|
||||
Reference in New Issue
Block a user