mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 11:42:13 +03:00
3faefb5836
swc_ecma_ast: - Add `is_abstract` to constructor types. swc_ecma_codegen: - Fix codegen of `Bool`. - Implement codegen for abstract constructors. swc_ecma_parser: - Inline tsc parser test suite. - Implement parsing of abstract constructor types.
9 lines
148 B
Bash
Executable File
9 lines
148 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
for x
|
|
do
|
|
echo "Converting $x"
|
|
mkdir -p $(dirname "tmp.$x")
|
|
tr -d '\015' < "$x" > "tmp.$x"
|
|
mv "tmp.$x" "$x"
|
|
done |