From e16850439aa79028e049f1e235ab34a5a371dfe8 Mon Sep 17 00:00:00 2001 From: Babel Bot <30521560+liuxingbaoyu@users.noreply.github.com> Date: Mon, 13 May 2024 15:39:12 +0800 Subject: [PATCH] export all --- packages/babel-traverse/src/path/index.ts | 150 +++++++++++++++++++-- packages/babel-traverse/test/path/index.js | 3 +- 2 files changed, 138 insertions(+), 15 deletions(-) diff --git a/packages/babel-traverse/src/path/index.ts b/packages/babel-traverse/src/path/index.ts index 2b192a92372c..3bd343e59921 100644 --- a/packages/babel-traverse/src/path/index.ts +++ b/packages/babel-traverse/src/path/index.ts @@ -217,20 +217,142 @@ const NodePath_Final = class NodePath { } }; -Object.assign( - NodePath_Final.prototype, - NodePath_ancestry, - NodePath_inference, - NodePath_replacement, - NodePath_evaluation, - NodePath_conversion, - NodePath_introspection, - NodePath_context, - NodePath_removal, - NodePath_modification, - NodePath_family, - NodePath_comments, -); +Object.assign(NodePath_Final.prototype, { + // NodePath_ancestry + findParent: NodePath_ancestry.findParent, + find: NodePath_ancestry.find, + getFunctionParent: NodePath_ancestry.getFunctionParent, + getStatementParent: NodePath_ancestry.getStatementParent, + getEarliestCommonAncestorFrom: + NodePath_ancestry.getEarliestCommonAncestorFrom, + getDeepestCommonAncestorFrom: NodePath_ancestry.getDeepestCommonAncestorFrom, + getAncestry: NodePath_ancestry.getAncestry, + isAncestor: NodePath_ancestry.isAncestor, + isDescendant: NodePath_ancestry.isDescendant, + inType: NodePath_ancestry.inType, + + // NodePath_inference + getTypeAnnotation: NodePath_inference.getTypeAnnotation, + _getTypeAnnotation: NodePath_inference._getTypeAnnotation, + isBaseType: NodePath_inference.isBaseType, + couldBeBaseType: NodePath_inference.couldBeBaseType, + baseTypeStrictlyMatches: NodePath_inference.baseTypeStrictlyMatches, + isGenericType: NodePath_inference.isGenericType, + + // NodePath_replacement + replaceWithMultiple: NodePath_replacement.replaceWithMultiple, + replaceWithSourceString: NodePath_replacement.replaceWithSourceString, + replaceWith: NodePath_replacement.replaceWith, + _replaceWith: NodePath_replacement._replaceWith, + replaceExpressionWithStatements: + NodePath_replacement.replaceExpressionWithStatements, + replaceInline: NodePath_replacement.replaceInline, + + // NodePath_evaluation + evaluateTruthy: NodePath_evaluation.evaluateTruthy, + evaluate: NodePath_evaluation.evaluate, + + // NodePath_conversion + toComputedKey: NodePath_conversion.toComputedKey, + ensureBlock: NodePath_conversion.ensureBlock, + ...(!process.env.BABEL_8_BREAKING && !USE_ESM + ? { + // @ts-expect-error babel 7 only + arrowFunctionToShadowed: NodePath_conversion.arrowFunctionToShadowed, + } + : {}), + unwrapFunctionEnvironment: NodePath_conversion.unwrapFunctionEnvironment, + arrowFunctionToExpression: NodePath_conversion.arrowFunctionToExpression, + + // NodePath_introspection + matchesPattern: NodePath_introspection.matchesPattern, + has: NodePath_introspection.has, + isStatic: NodePath_introspection.isStatic, + is: NodePath_introspection.is, + isnt: NodePath_introspection.isnt, + equals: NodePath_introspection.equals, + isNodeType: NodePath_introspection.isNodeType, + canHaveVariableDeclarationOrExpression: + NodePath_introspection.canHaveVariableDeclarationOrExpression, + canSwapBetweenExpressionAndStatement: + NodePath_introspection.canSwapBetweenExpressionAndStatement, + isCompletionRecord: NodePath_introspection.isCompletionRecord, + isStatementOrBlock: NodePath_introspection.isStatementOrBlock, + referencesImport: NodePath_introspection.referencesImport, + getSource: NodePath_introspection.getSource, + willIMaybeExecuteBefore: NodePath_introspection.willIMaybeExecuteBefore, + _guessExecutionStatusRelativeTo: + NodePath_introspection._guessExecutionStatusRelativeTo, + resolve: NodePath_introspection.resolve, + _resolve: NodePath_introspection._resolve, + isConstantExpression: NodePath_introspection.isConstantExpression, + isInStrictMode: NodePath_introspection.isInStrictMode, + + // NodePath_context + call: NodePath_context.call, + _call: NodePath_context._call, + isDenylisted: NodePath_context.isDenylisted, + isBlacklisted: NodePath_context.isBlacklisted, + visit: NodePath_context.visit, + skip: NodePath_context.skip, + skipKey: NodePath_context.skipKey, + stop: NodePath_context.stop, + setScope: NodePath_context.setScope, + setContext: NodePath_context.setContext, + resync: NodePath_context.resync, + _resyncParent: NodePath_context._resyncParent, + _resyncKey: NodePath_context._resyncKey, + _resyncList: NodePath_context._resyncList, + _resyncRemoved: NodePath_context._resyncRemoved, + popContext: NodePath_context.popContext, + pushContext: NodePath_context.pushContext, + setup: NodePath_context.setup, + setKey: NodePath_context.setKey, + requeue: NodePath_context.requeue, + _getQueueContexts: NodePath_context._getQueueContexts, + + // NodePath_removal + remove: NodePath_removal.remove, + _removeFromScope: NodePath_removal._removeFromScope, + _callRemovalHooks: NodePath_removal._callRemovalHooks, + _remove: NodePath_removal._remove, + _markRemoved: NodePath_removal._markRemoved, + _assertUnremoved: NodePath_removal._assertUnremoved, + + // NodePath_modification + insertBefore: NodePath_modification.insertBefore, + _containerInsert: NodePath_modification._containerInsert, + _containerInsertBefore: NodePath_modification._containerInsertBefore, + _containerInsertAfter: NodePath_modification._containerInsertAfter, + insertAfter: NodePath_modification.insertAfter, + updateSiblingKeys: NodePath_modification.updateSiblingKeys, + _verifyNodeList: NodePath_modification._verifyNodeList, + unshiftContainer: NodePath_modification.unshiftContainer, + pushContainer: NodePath_modification.pushContainer, + hoist: NodePath_modification.hoist, + + // NodePath_family + getOpposite: NodePath_family.getOpposite, + getCompletionRecords: NodePath_family.getCompletionRecords, + getSibling: NodePath_family.getSibling, + getPrevSibling: NodePath_family.getPrevSibling, + getNextSibling: NodePath_family.getNextSibling, + getAllNextSiblings: NodePath_family.getAllNextSiblings, + getAllPrevSiblings: NodePath_family.getAllPrevSiblings, + get: NodePath_family.get, + _getKey: NodePath_family._getKey, + _getPattern: NodePath_family._getPattern, + getBindingIdentifiers: NodePath_family.getBindingIdentifiers, + getOuterBindingIdentifiers: NodePath_family.getOuterBindingIdentifiers, + getBindingIdentifierPaths: NodePath_family.getBindingIdentifierPaths, + getOuterBindingIdentifierPaths: + NodePath_family.getOuterBindingIdentifierPaths, + + // NodePath_comments + shareCommentsWithSiblings: NodePath_comments.shareCommentsWithSiblings, + addComment: NodePath_comments.addComment, + addComments: NodePath_comments.addComments, +}); if (!process.env.BABEL_8_BREAKING) { // @ts-expect-error The original _guessExecutionStatusRelativeToDifferentFunctions only worked for paths in diff --git a/packages/babel-traverse/test/path/index.js b/packages/babel-traverse/test/path/index.js index 1862bd01be33..8502afc58508 100644 --- a/packages/babel-traverse/test/path/index.js +++ b/packages/babel-traverse/test/path/index.js @@ -1,4 +1,5 @@ import { NodePath } from "../../lib/index.js"; +import { itBabel7 } from "$repo-utils"; describe("NodePath", () => { describe("setData/getData", () => { @@ -63,7 +64,7 @@ describe("NodePath", () => { }); }); - it("methods", () => { + itBabel7("methods babel 7", () => { const path = new NodePath({}, {}); const keys = Object.keys(Object.getPrototypeOf(path)).sort();