oxc/tasks/coverage/snapshots
tomoya yanagibashi 0601271b2c
fix(ast): Fix StaticMemberExpression.get_first_object (#6969)
I think `get_first_object` does not return expected expression.

For example, in case of `foo.bar.a`, it doesn't return `foo` but
`foo.bar`.

**Expected**
```
{
  "type": "Identifier",
  "start": 0,
  "end": 3,
  "name": "foo"
}
```

**Actual**
```
{
   "type":"StaticMemberExpression",
   "start":0,
   "end":7,
   "object":{
      "type":"Identifier",
      "start":0,
      "end":3,
      "name":"foo"
   },
   "property":{
      "type":"Identifier",
      "start":4,
      "end":7,
      "name":"bar"
   },
   "optional":false
}
```

---------

Co-authored-by: Dunqing <dengqing0821@gmail.com>
2024-11-01 12:28:48 +08:00
..
codegen_babel.snap chore(coverage): bump test262, babel and TypeScript (#6702) 2024-10-20 15:02:26 +00:00
codegen_misc.snap fix(semantic): ? on variable declaration type annotations is a syntax error (#5956) 2024-09-22 00:01:47 +00:00
codegen_test262.snap feat(regular_expression)!: Support ES2025 Duplicated named capture groups (#6847) 2024-10-25 02:13:57 +00:00
codegen_typescript.snap chore(coverage): bump test262, babel and TypeScript (#6702) 2024-10-20 15:02:26 +00:00
minifier_babel.snap chore(coverage): bump test262, babel and TypeScript (#6702) 2024-10-20 15:02:26 +00:00
minifier_test262.snap feat(regular_expression)!: Support ES2025 Duplicated named capture groups (#6847) 2024-10-25 02:13:57 +00:00
parser_babel.snap fix(parser): fix incorrect parsed TSIndexSignature (#7016) 2024-10-30 07:34:22 +00:00
parser_misc.snap fix(parser): do not parse as and satisfies expression in javascript (#6442) 2024-10-11 03:31:24 +00:00
parser_test262.snap feat(regular_expression)!: Support ES2025 Duplicated named capture groups (#6847) 2024-10-25 02:13:57 +00:00
parser_typescript.snap fix(parser): fix incorrect parsed TSIndexSignature (#7016) 2024-10-30 07:34:22 +00:00
prettier_babel.snap test(conformance): move conformance snapshots into separate directory (#5924) 2024-09-20 12:30:39 +00:00
prettier_misc.snap test(conformance): move conformance snapshots into separate directory (#5924) 2024-09-20 12:30:39 +00:00
prettier_test262.snap test(conformance): move conformance snapshots into separate directory (#5924) 2024-09-20 12:30:39 +00:00
prettier_typescript.snap test(conformance): move conformance snapshots into separate directory (#5924) 2024-09-20 12:30:39 +00:00
runtime.snap chore(coverage): remove known runtime issues 2024-10-28 21:38:37 +08:00
semantic_babel.snap fix(transformer): only run typescript plugin for typescript source (#6889) 2024-10-25 13:59:31 +00:00
semantic_misc.snap fix(transformer/typescript): retain ExportNamedDeclaration without specifiers and declaration (#6848) 2024-10-24 07:59:07 +00:00
semantic_test262.snap feat(transformer): add TransformerOptions::env with EnvOptions (#7037) 2024-10-31 12:30:32 +00:00
semantic_typescript.snap feat(transformer): add TransformerOptions::env with EnvOptions (#7037) 2024-10-31 12:30:32 +00:00
transformer_babel.snap chore(coverage): bump test262, babel and TypeScript (#6702) 2024-10-20 15:02:26 +00:00
transformer_misc.snap fix(semantic): ? on variable declaration type annotations is a syntax error (#5956) 2024-09-22 00:01:47 +00:00
transformer_test262.snap feat(regular_expression)!: Support ES2025 Duplicated named capture groups (#6847) 2024-10-25 02:13:57 +00:00
transformer_typescript.snap fix(transformer): only run typescript plugin for typescript source (#6889) 2024-10-25 13:59:31 +00:00
transpile.snap fix(ast): Fix StaticMemberExpression.get_first_object (#6969) 2024-11-01 12:28:48 +08:00