hermes-estree 0.28.1 → 0.29.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -304,6 +304,9 @@ interface BinaryExpression_With_operator extends BinaryExpression {
304
304
  interface BlockStatement_With_body extends BlockStatement {
305
305
  +body: $NonMaybeType<BlockStatement['body']>;
306
306
  }
307
+ interface BlockStatement_With_implicit extends BlockStatement {
308
+ +implicit: $NonMaybeType<BlockStatement['implicit']>;
309
+ }
307
310
  interface BooleanLiteralTypeAnnotation_With_value
308
311
  extends BooleanLiteralTypeAnnotation {
309
312
  +value: $NonMaybeType<BooleanLiteralTypeAnnotation['value']>;
@@ -891,8 +894,8 @@ interface ImportDefaultSpecifier_With_local extends ImportDefaultSpecifier {
891
894
  interface ImportExpression_With_source extends ImportExpression {
892
895
  +source: $NonMaybeType<ImportExpression['source']>;
893
896
  }
894
- interface ImportExpression_With_attributes extends ImportExpression {
895
- +attributes: $NonMaybeType<ImportExpression['attributes']>;
897
+ interface ImportExpression_With_options extends ImportExpression {
898
+ +options: $NonMaybeType<ImportExpression['options']>;
896
899
  }
897
900
  interface ImportNamespaceSpecifier_With_local extends ImportNamespaceSpecifier {
898
901
  +local: $NonMaybeType<ImportNamespaceSpecifier['local']>;
@@ -1754,6 +1757,7 @@ export type ESQueryNodeSelectorsWithoutFallback = {
1754
1757
  ) => void,
1755
1758
  +BlockStatement?: (node: BlockStatement) => void,
1756
1759
  +'BlockStatement[body]'?: (node: BlockStatement_With_body) => void,
1760
+ +'BlockStatement[implicit]'?: (node: BlockStatement_With_implicit) => void,
1757
1761
  +BooleanLiteralTypeAnnotation?: (node: BooleanLiteralTypeAnnotation) => void,
1758
1762
  +'BooleanLiteralTypeAnnotation[value]'?: (
1759
1763
  node: BooleanLiteralTypeAnnotation_With_value,
@@ -2205,9 +2209,7 @@ export type ESQueryNodeSelectorsWithoutFallback = {
2205
2209
  ) => void,
2206
2210
  +ImportExpression?: (node: ImportExpression) => void,
2207
2211
  +'ImportExpression[source]'?: (node: ImportExpression_With_source) => void,
2208
- +'ImportExpression[attributes]'?: (
2209
- node: ImportExpression_With_attributes,
2210
- ) => void,
2212
+ +'ImportExpression[options]'?: (node: ImportExpression_With_options) => void,
2211
2213
  +ImportNamespaceSpecifier?: (node: ImportNamespaceSpecifier) => void,
2212
2214
  +'ImportNamespaceSpecifier[local]'?: (
2213
2215
  node: ImportNamespaceSpecifier_With_local,
@@ -2871,6 +2873,9 @@ export type ESQueryNodeSelectorsWithoutFallback = {
2871
2873
  ) => void,
2872
2874
  +'BlockStatement:exit'?: (node: BlockStatement) => void,
2873
2875
  +'BlockStatement[body]:exit'?: (node: BlockStatement_With_body) => void,
2876
+ +'BlockStatement[implicit]:exit'?: (
2877
+ node: BlockStatement_With_implicit,
2878
+ ) => void,
2874
2879
  +'BooleanLiteralTypeAnnotation:exit'?: (
2875
2880
  node: BooleanLiteralTypeAnnotation,
2876
2881
  ) => void,
@@ -3362,8 +3367,8 @@ export type ESQueryNodeSelectorsWithoutFallback = {
3362
3367
  +'ImportExpression[source]:exit'?: (
3363
3368
  node: ImportExpression_With_source,
3364
3369
  ) => void,
3365
- +'ImportExpression[attributes]:exit'?: (
3366
- node: ImportExpression_With_attributes,
3370
+ +'ImportExpression[options]:exit'?: (
3371
+ node: ImportExpression_With_options,
3367
3372
  ) => void,
3368
3373
  +'ImportNamespaceSpecifier:exit'?: (node: ImportNamespaceSpecifier) => void,
3369
3374
  +'ImportNamespaceSpecifier[local]:exit'?: (