oxc/crates/oxc_isolated_declarations/tests/snapshots
michaelm 185eb206a8
fix(isolated_declarations): namespaces that are default exported should be considered for expando functions (#4935)
This should be ok but currently has an error reported
```ts
function foo(): void {}

namespace foo {
  export let bar = 42;
}

foo.bar = 42;

export default foo;
```

Co-authored-by: MichaelMitchell-at <=>
Co-authored-by: Dunqing <dengqing0821@gmail.com>
Co-authored-by: Don Isaac <donald.isaac@gmail.com>
2024-08-19 11:24:05 +08:00
..
arrow-function-return-type.snap fix(isolated_declarations): Infer type of template literal expressions as string (#4068) 2024-07-08 00:41:33 +08:00
as-const.snap feat(codegen): add option for choosing quotes; remove slow choose_quot method (#4219) 2024-07-12 03:08:22 +00:00
async-function.snap fix(isolated-declarations): remove the async and generator keywords from MethodDefinition (#4130) 2024-07-09 03:58:47 +00:00
class.snap fix(isolated_declarations): Class properties should still be lifted from private constructors (#4934) 2024-08-16 21:43:44 +08:00
declare-global.snap
eliminate-imports.snap feat(codegen): add option for choosing quotes; remove slow choose_quot method (#4219) 2024-07-12 03:08:22 +00:00
empty-export.snap
empty-export2.snap
expando-function.snap fix(isolated_declarations): namespaces that are default exported should be considered for expando functions (#4935) 2024-08-19 11:24:05 +08:00
function-overloads.snap
function-parameters.snap fix(codegen): print shorthand for all { x } variants (#4374) 2024-07-21 19:54:21 +08:00
generator.snap fix(isolated-declarations): remove the async and generator keywords from MethodDefinition (#4130) 2024-07-09 03:58:47 +00:00
infer-expression.snap
infer-return-type.snap fix(isolated_declarations): Infer type of template literal expressions as string (#4068) 2024-07-08 00:41:33 +08:00
infer-template-literal.snap feat(codegen): add option for choosing quotes; remove slow choose_quot method (#4219) 2024-07-12 03:08:22 +00:00
mapped-types.snap feat(codegen): add option for choosing quotes; remove slow choose_quot method (#4219) 2024-07-12 03:08:22 +00:00
module-declaration.snap fix(isolated_declarations): Always emit module declarations that perform augmentation (#4919) 2024-08-16 00:39:28 +08:00
non-exported-binding-elements.snap
readonly.snap
set-get-accessor.snap