Commit Graph

5876 Commits

Author SHA1 Message Date
SWC Bot
d8186fb94e chore: Bump crates 2024-02-27 03:54:36 +00:00
SWC Bot
942c95be2d chore: Bump crates 2024-02-26 08:21:15 +00:00
Artur
c0d01dff21
feat(es/lints): Add no-cond-assign rule (#8661) 2024-02-26 08:19:40 +00:00
Donny/강동윤
1bc4cb7c05
fix(es/modules): Do not call Path::parent() for FileName::Anon (#8662)
**Related issue:**

 - Closes #8660
2024-02-26 07:01:32 +00:00
SWC Bot
1603569a75 chore: Bump crates 2024-02-26 02:49:45 +00:00
xc2
e1791340cd
fix(es/codegen): Fix replacement when inline_script is on (#8659)
**Description:**


The replacements for `inline_script` might be with mistake


40682c8d1f/crates/swc_ecma_codegen/src/lib.rs (L649)

which in terser is:

![image](https://github.com/swc-project/swc/assets/18117084/e843e125-c001-44d1-9572-15bec355a34e)



0ef05847fa/lib/output.js (L414)


**Related issue:**

https://github.com/web-infra-dev/rspack/issues/5757
2024-02-26 02:48:06 +00:00
SWC Bot
40682c8d1f chore: Bump crates 2024-02-23 07:08:33 +00:00
Donny/강동윤
60b234077e
fix(css/parser): Fix parsing of @import without ; or space (#8657) 2024-02-23 16:06:54 +09:00
SWC Bot
4154cfa8cb chore: Bump crates 2024-02-23 00:15:59 +00:00
David Sherret
66bf8e907d
fix(es/codegen): Emit computed getter and setter signatures (#8656)
**Description:**

Emits computed getter/setter signatures.
2024-02-23 00:14:29 +00:00
Donny/강동윤
671c4a78dd
perf(visit): Use qualified paths for generated codes (#8655) 2024-02-22 13:08:36 +09:00
SWC Bot
7c5113b6a9 chore: Bump crates 2024-02-22 02:56:23 +00:00
Donny/강동윤
8defcb2819
perf(visit): Use quote::quote! instead of pmutil::q! (#8485)
**Description:**


**Related issue:**

 - Closes #7071.
2024-02-22 11:54:41 +09:00
SWC Bot
359ae7a16a chore: Bump crates 2024-02-21 10:22:20 +00:00
Donny/강동윤
7d62c762e6
feat(es/ast): Add alias to EsVersion (#8653)
**Related issue:**

 - Closes #8516
2024-02-21 10:20:02 +00:00
magic-akari
3bf3a62505
doc(es/minifier): Update examples code (#8652)
**Related issue:**

- Closes #8651 

The core logic of SWC is correct, but there are incorrect code examples in our code repository.
2024-02-21 02:11:19 +00:00
SWC Bot
5cab610db1 chore: Bump crates 2024-02-20 01:27:25 +00:00
Donny/강동윤
ca23a3353c
fix(es/parser): Check for existence of modifiers while parsing accessor token (#8649)
**Related issue:**

 - Closes #8526
2024-02-20 01:25:42 +00:00
SWC Bot
463cd3bf4c chore: Bump crates 2024-02-20 00:55:31 +00:00
Donny/강동윤
6fe6810c49
fix(es/compat): Split declaration and init in block-scoping pass (#8648)
**Description:**

This does not support 

```js
class Foo extends Bar {
    constructor() {
        for (const i of [1]) {
            setTimeout(() => {
                console.log(this)
            });
        }
        super();
    }
}
```

but it does not seem to be used in a real-world code.

**Related issue:**

 - Closes #8300
 - Closes #8311
2024-02-20 09:53:53 +09:00
Donny/강동윤
97153206ad
fix(es/minifier): Abort property hoister on this usage (#8647)
**Related issue:**

 - Closes #8643
2024-02-19 13:09:15 +09:00
SWC Bot
d7434beaf8 chore: Bump crates 2024-02-19 03:15:59 +00:00
magic-akari
22c8e2e1e9
fix(es/typescript): Handle exported JSX members (#8642)
**Related issue:**

- Closes #8640
2024-02-19 03:14:20 +00:00
SWC Bot
84c05b5eec chore: Bump crates 2024-02-14 03:23:28 +00:00
phiresky
cd38ef39d6
fix(es/helpers): Add addInitializer to field decorators (#8619)
**Description:**

At some point the spec text of ES decorators was changed to also have
addInitializer for field decorators. This is already used e.g. in mobx.
This simple change removes the special case that was present for field
decorators and seems to fix the issue for me.

This change is backwards compatible since it only affects code that was
broken before.

**Related issue:**

 - Closes #8525
2024-02-14 03:21:58 +00:00
SWC Bot
cb95f0478c chore: Bump crates 2024-02-14 02:41:18 +00:00
Donny/강동윤
5f1cf01823
fix(es/react): Validate pragma before parsing (#8637)
**Related issue:**

 - Closes #7938
2024-02-14 02:39:40 +00:00
SWC Bot
09bedecff6 chore: Bump crates 2024-02-14 02:10:39 +00:00
Donny/강동윤
8cd4813067
feat(es/minifier): Remove unused parameters of arrow functions (#8636)
**Related issue:**

 - Closes #8626
2024-02-14 02:09:11 +00:00
Donny/강동윤
a0b77e0664
test(es/transforms): Add a test for reserved_words pass (#8638)
**Related issue:**

 - Closes #7691
2024-02-13 07:41:24 +00:00
SWC Bot
07bbfbd2a4 chore: Bump crates 2024-02-13 07:05:36 +00:00
Donny/강동윤
762959c72d
feat(swc_core): Expose ES linter (#8635) 2024-02-13 07:03:57 +00:00
SWC Bot
9b36e7fd23 chore: Bump crates 2024-02-13 06:34:59 +00:00
Donny/강동윤
2c63b31143
test(es/parser): Add a test for << (#8634)
**Related issue:**

 - Closes #7621.
2024-02-13 06:33:11 +00:00
SWC Bot
6cca7cbfe8 chore: Bump crates 2024-02-13 05:14:07 +00:00
magic-akari
e5d6de0ea9
fix(es/compat): Visit AssignExpr right branch in FnEnvHoister (#8633)
**Related issue:**

- Closes #8632
2024-02-13 05:12:41 +00:00
SWC Bot
52b6fd8808 chore: Bump crates 2024-02-13 04:34:24 +00:00
Donny/강동윤
6726b631e6
build(cargo): Update rustc to nightly-2024-02-06 (#8618) 2024-02-13 13:32:49 +09:00
SWC Bot
9ad0f9fedb chore: Bump crates 2024-02-13 02:58:35 +00:00
David Sherret
21a447f35a
fix(es/decorators): Do not insert duplicate constructors (#8631)
**Description:**

Doesn't insert a duplicate ctor when the ctor uses overloads in TS.


**Related issue:** 

 - Closes #8630.
2024-02-13 02:57:03 +00:00
SWC Bot
89bd0c8f7d chore: Bump crates 2024-02-10 03:42:34 +00:00
Donny/강동윤
4e0d240895
build(plugin): Update wasmer to v4.2.5 (#8624)
**Description:**

This is required to update rustc.
2024-02-10 03:40:55 +00:00
SWC Bot
6270c52c55 chore: Bump crates 2024-02-08 05:59:42 +00:00
SWC Bot
906cca43c1 chore: Bump crates 2024-02-08 01:51:17 +00:00
Donny/강동윤
132be95173
fix(es/plugin): Fix schema version issue (#8621) 2024-02-08 10:49:38 +09:00
Donny/강동윤
95236e9abe
fix(es/parser): Fix detection of use strict directive (#8617)
**Description:**

Directives should be at the start of the file, and this PR changes the parser to match only at the start of a file.

**Related issue:**

 - Closes #8616.
2024-02-07 15:01:58 +00:00
SWC Bot
f7baf240ba chore: Bump crates 2024-02-07 07:25:27 +00:00
Donny/강동윤
c0beba7708
test(es): Update tsc conformance test suite (#8615) 2024-02-07 07:23:54 +00:00
SWC Bot
8febd34a76 chore: Bump crates 2024-02-07 03:54:31 +00:00
Donny/강동윤
e5585e99f1
chore(preset-env): Update browserslist-rs (#8614) 2024-02-07 03:52:42 +00:00