-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathindex.js
30 lines (30 loc) · 2.84 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
export const normalizeComputed = await import('./normalizeComputed.js');
export const normalizeEmptyStatements = await import('./normalizeEmptyStatements.js');
export const parseTemplateLiteralsIntoStringLiterals = await import('./parseTemplateLiteralsIntoStringLiterals.js');
export const rearrangeSequences = await import('./rearrangeSequences.js');
export const rearrangeSwitches = await import('./rearrangeSwitches.js');
export const removeDeadNodes = await import('./removeDeadNodes.js');
export const removeRedundantBlockStatements = await import('./removeRedundantBlockStatements.js');
export const replaceBooleanExpressionsWithIf = await import('./replaceBooleanExpressionsWithIf.js');
export const replaceCallExpressionsWithUnwrappedIdentifier = await import('./replaceCallExpressionsWithUnwrappedIdentifier.js');
export const replaceEvalCallsWithLiteralContent = await import('./replaceEvalCallsWithLiteralContent.js');
export const replaceFunctionShellsWithWrappedValue = await import('./replaceFunctionShellsWithWrappedValue.js');
export const replaceFunctionShellsWithWrappedValueIIFE = await import('./replaceFunctionShellsWithWrappedValueIIFE.js');
export const replaceIdentifierWithFixedAssignedValue = await import('./replaceIdentifierWithFixedAssignedValue.js');
export const replaceIdentifierWithFixedValueNotAssignedAtDeclaration = await import('./replaceIdentifierWithFixedValueNotAssignedAtDeclaration.js');
export const replaceNewFuncCallsWithLiteralContent = await import('./replaceNewFuncCallsWithLiteralContent.js');
export const replaceSequencesWithExpressions = await import('./replaceSequencesWithExpressions.js');
export const resolveDeterministicIfStatements = await import('./resolveDeterministicIfStatements.js');
export const resolveFunctionConstructorCalls = await import('./resolveFunctionConstructorCalls.js');
export const resolveMemberExpressionReferencesToArrayIndex = await import('./resolveMemberExpressionReferencesToArrayIndex.js');
export const resolveMemberExpressionsWithDirectAssignment = await import('./resolveMemberExpressionsWithDirectAssignment.js');
export const resolveProxyCalls = await import('./resolveProxyCalls.js');
export const resolveProxyReferences = await import('./resolveProxyReferences.js');
export const resolveProxyVariables = await import('./resolveProxyVariables.js');
export const resolveRedundantLogicalExpressions = await import('./resolveRedundantLogicalExpressions.js');
export const separateChainedDeclarators = await import('./separateChainedDeclarators.js');
export const simplifyCalls = await import('./simplifyCalls.js');
export const simplifyIfStatements = await import('./simplifyIfStatements.js');
export const unwrapFunctionShells = await import('./unwrapFunctionShells.js');
export const unwrapIIFEs = await import('./unwrapIIFEs.js');
export const unwrapSimpleOperations = await import('./unwrapSimpleOperations.js');