|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- "use strict";
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.enableFeature = enableFeature;
- exports.isLoose = isLoose;
- exports.verifyUsedFeatures = verifyUsedFeatures;
- exports.FEATURES = void 0;
-
- var _decorators = require("./decorators");
-
- const FEATURES = Object.freeze({
- fields: 1 << 1,
- privateMethods: 1 << 2,
- decorators: 1 << 3
- });
- exports.FEATURES = FEATURES;
- const featuresKey = "@babel/plugin-class-features/featuresKey";
- const looseKey = "@babel/plugin-class-features/looseKey";
-
- function enableFeature(file, feature, loose) {
- if (!hasFeature(file, feature)) {
- file.set(featuresKey, file.get(featuresKey) | feature);
- if (loose) file.set(looseKey, file.get(looseKey) | feature);
- }
- }
-
- function hasFeature(file, feature) {
- return !!(file.get(featuresKey) & feature);
- }
-
- function isLoose(file, feature) {
- return !!(file.get(looseKey) & feature);
- }
-
- function verifyUsedFeatures(path, file) {
- if ((0, _decorators.hasOwnDecorators)(path.node)) {
- if (!hasFeature(file, FEATURES.decorators)) {
- throw path.buildCodeFrameError("Decorators are not enabled." + "\nIf you are using " + '["@babel/plugin-proposal-decorators", { "legacy": true }], ' + 'make sure it comes *before* "@babel/plugin-proposal-class-properties" ' + "and enable loose mode, like so:\n" + '\t["@babel/plugin-proposal-decorators", { "legacy": true }]\n' + '\t["@babel/plugin-proposal-class-properties", { "loose": true }]');
- }
-
- if (path.isPrivate()) {
- throw path.buildCodeFrameError(`Private ${path.isClassMethod() ? "methods" : "fields"} in decorated classes are not supported yet.`);
- }
- }
-
- if (path.isPrivate() && path.isMethod()) {
- if (!hasFeature(file, FEATURES.privateMethods)) {
- throw path.buildCodeFrameError("Class private methods are not enabled.");
- }
- }
-
- if (hasFeature(file, FEATURES.privateMethods) && hasFeature(file, FEATURES.fields) && isLoose(file, FEATURES.privateMethods) !== isLoose(file, FEATURES.fields)) {
- throw path.buildCodeFrameError("'loose' mode configuration must be the same for both @babel/plugin-proposal-class-properties " + "and @babel/plugin-proposal-private-methods");
- }
-
- if (path.isProperty()) {
- if (!hasFeature(file, FEATURES.fields)) {
- throw path.buildCodeFrameError("Class fields are not enabled.");
- }
- }
- }
|