You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
580 B

4 years ago
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = void 0;
  6. var _helperPluginUtils = require("@babel/helper-plugin-utils");
  7. var _core = require("@babel/core");
  8. var _default = (0, _helperPluginUtils.declare)(api => {
  9. api.assertVersion(7);
  10. return {
  11. name: "transform-reserved-words",
  12. visitor: {
  13. "BindingIdentifier|ReferencedIdentifier"(path) {
  14. if (!_core.types.isValidES3Identifier(path.node.name)) {
  15. path.scope.rename(path.node.name);
  16. }
  17. }
  18. }
  19. };
  20. });
  21. exports.default = _default;