123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- "use strict";
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.isBindingIdentifier = isBindingIdentifier;
- exports.isBlockScoped = isBlockScoped;
- exports.isExpression = isExpression;
- exports.isFlow = isFlow;
- exports.isForAwaitStatement = isForAwaitStatement;
- exports.isGenerated = isGenerated;
- exports.isPure = isPure;
- exports.isReferenced = isReferenced;
- exports.isReferencedIdentifier = isReferencedIdentifier;
- exports.isReferencedMemberExpression = isReferencedMemberExpression;
- exports.isRestProperty = isRestProperty;
- exports.isScope = isScope;
- exports.isSpreadProperty = isSpreadProperty;
- exports.isStatement = isStatement;
- exports.isUser = isUser;
- exports.isVar = isVar;
- var _t = require("@babel/types");
- const {
- isBinding,
- isBlockScoped: nodeIsBlockScoped,
- isExportDeclaration,
- isExpression: nodeIsExpression,
- isFlow: nodeIsFlow,
- isForStatement,
- isForXStatement,
- isIdentifier,
- isImportDeclaration,
- isImportSpecifier,
- isJSXIdentifier,
- isJSXMemberExpression,
- isMemberExpression,
- isRestElement: nodeIsRestElement,
- isReferenced: nodeIsReferenced,
- isScope: nodeIsScope,
- isStatement: nodeIsStatement,
- isVar: nodeIsVar,
- isVariableDeclaration,
- react,
- isForOfStatement
- } = _t;
- const {
- isCompatTag
- } = react;
- function isReferencedIdentifier(opts) {
- const {
- node,
- parent
- } = this;
- if (!isIdentifier(node, opts) && !isJSXMemberExpression(parent, opts)) {
- if (isJSXIdentifier(node, opts)) {
- if (isCompatTag(node.name)) return false;
- } else {
- return false;
- }
- }
- return nodeIsReferenced(node, parent, this.parentPath.parent);
- }
- function isReferencedMemberExpression() {
- const {
- node,
- parent
- } = this;
- return isMemberExpression(node) && nodeIsReferenced(node, parent);
- }
- function isBindingIdentifier() {
- const {
- node,
- parent
- } = this;
- const grandparent = this.parentPath.parent;
- return isIdentifier(node) && isBinding(node, parent, grandparent);
- }
- function isStatement() {
- const {
- node,
- parent
- } = this;
- if (nodeIsStatement(node)) {
- if (isVariableDeclaration(node)) {
- if (isForXStatement(parent, {
- left: node
- })) return false;
- if (isForStatement(parent, {
- init: node
- })) return false;
- }
- return true;
- } else {
- return false;
- }
- }
- function isExpression() {
- if (this.isIdentifier()) {
- return this.isReferencedIdentifier();
- } else {
- return nodeIsExpression(this.node);
- }
- }
- function isScope() {
- return nodeIsScope(this.node, this.parent);
- }
- function isReferenced() {
- return nodeIsReferenced(this.node, this.parent);
- }
- function isBlockScoped() {
- return nodeIsBlockScoped(this.node);
- }
- function isVar() {
- return nodeIsVar(this.node);
- }
- function isUser() {
- return this.node && !!this.node.loc;
- }
- function isGenerated() {
- return !this.isUser();
- }
- function isPure(constantsOnly) {
- return this.scope.isPure(this.node, constantsOnly);
- }
- function isFlow() {
- const {
- node
- } = this;
- if (nodeIsFlow(node)) {
- return true;
- } else if (isImportDeclaration(node)) {
- return node.importKind === "type" || node.importKind === "typeof";
- } else if (isExportDeclaration(node)) {
- return node.exportKind === "type";
- } else if (isImportSpecifier(node)) {
- return node.importKind === "type" || node.importKind === "typeof";
- } else {
- return false;
- }
- }
- function isRestProperty() {
- var _this$parentPath;
- return nodeIsRestElement(this.node) && ((_this$parentPath = this.parentPath) == null ? void 0 : _this$parentPath.isObjectPattern());
- }
- function isSpreadProperty() {
- var _this$parentPath2;
- return nodeIsRestElement(this.node) && ((_this$parentPath2 = this.parentPath) == null ? void 0 : _this$parentPath2.isObjectExpression());
- }
- function isForAwaitStatement() {
- return isForOfStatement(this.node, {
- await: true
- });
- }
- {
- exports.isExistentialTypeParam = function isExistentialTypeParam() {
- throw new Error("`path.isExistentialTypeParam` has been renamed to `path.isExistsTypeAnnotation()` in Babel 7.");
- };
- exports.isNumericLiteralTypeAnnotation = function isNumericLiteralTypeAnnotation() {
- throw new Error("`path.isNumericLiteralTypeAnnotation()` has been renamed to `path.isNumberLiteralTypeAnnotation()` in Babel 7.");
- };
- }
- //# sourceMappingURL=virtual-types-validator.js.map
|