@@ -21,10 +21,12 @@ export {
21
21
getBooleanAncestor ,
22
22
} from './boolean.js' ;
23
23
24
- export { default as avoidCapture } from './avoid-capture .js' ;
24
+ export { default as cartesianProductSamples } from './cartesian-product-samples .js' ;
25
25
export { default as escapeString } from './escape-string.js' ;
26
+ export { default as getAvailableVariableName } from './get-available-variable-name.js' ;
26
27
export { default as getCallExpressionArgumentsText } from './get-call-expression-arguments-text.js' ;
27
28
export { default as getCallExpressionTokens } from './get-call-expression-tokens.js' ;
29
+ export { default as getIndentString } from './get-indent-string.js' ;
28
30
export { default as getReferences } from './get-references.js' ;
29
31
export { default as getScopes } from './get-scopes.js' ;
30
32
export { default as getVariableIdentifiers } from './get-variable-identifiers.js' ;
@@ -39,11 +41,14 @@ export {default as isOnSameLine} from './is-on-same-line.js';
39
41
export { default as isSameIdentifier } from './is-same-identifier.js' ;
40
42
export { default as isSameReference } from './is-same-reference.js' ;
41
43
export { default as isShadowed } from './is-shadowed.js' ;
44
+ export { default as isShorthandImportLocal } from './is-shorthand-import-local.js' ;
45
+ export { default as isShorthandPropertyValue } from './is-shorthand-property-value.js' ;
42
46
export { default as isValueNotUsable } from './is-value-not-usable.js' ;
43
47
export { default as needsSemicolon } from './needs-semicolon.js' ;
44
- export { default as shouldAddParenthesesToMemberExpressionObject } from './should-add-parentheses-to-member-expression-object.js' ;
45
- export { default as shouldAddParenthesesToCallExpressionCallee } from './should-add-parentheses-to-call-expression-callee.js' ;
46
48
export { default as shouldAddParenthesesToAwaitExpressionArgument } from './should-add-parentheses-to-await-expression-argument.js' ;
49
+ export { default as shouldAddParenthesesToCallExpressionCallee } from './should-add-parentheses-to-call-expression-callee.js' ;
50
+ export { default as shouldAddParenthesesToConditionalExpressionChild } from './should-add-parentheses-to-conditional-expression-child.js' ;
51
+ export { default as shouldAddParenthesesToMemberExpressionObject } from './should-add-parentheses-to-member-expression-object.js' ;
47
52
export { default as singular } from './singular.js' ;
48
53
export { default as toLocation } from './to-location.js' ;
49
54
export { default as getAncestor } from './get-ancestor.js' ;
0 commit comments