강동윤
|
5ce4e1e927
|
fix(es/parser): Use correct position for comments (#1527)
swc_ecma_parser:
- Use correct position for comments in
```ts
function Bar() {
const [foo, setFoo] = useState(0);
React.useEffect(() => {
// @refresh reset
});
return <h1>{foo}</h1>;
}
```
|
2021-03-31 19:30:05 +09:00 |
|
David Sherret
|
708efebac9
|
Fix comment line's end to be on same line (#544)
- fix comment line's end to be on same line.
|
2019-12-30 11:09:45 +09:00 |
|
강동윤
|
30af06bb70
|
Ast (#513)
swc_ecmascript:
- add `ExprStmt`.
- change type of regex.expression and regex.flags.
|
2019-12-16 18:08:21 +09:00 |
|
강동윤
|
43d633b44d
|
Handle comments and improve codegen (#136)
swc_ecma_codegen:
- Improve codegen
- Handle comments
swc_ecma_parser:
- Handle comments
|
2019-02-08 13:00:58 +09:00 |
|
강동윤
|
f9be576e02
|
Ecmascript codegen (#40)
Comment is not fully supported yet
|
2018-10-25 13:17:05 +09:00 |
|