mirror of
https://github.com/swc-project/swc.git
synced 2024-11-27 13:38:33 +03:00
13 lines
315 B
Bash
13 lines
315 B
Bash
#!/usr/bin/env bash
|
|
|
|
|
|
for filename in ../swc_ecma_ast/src/*.rs; do
|
|
# echo "$filename"
|
|
while read -r line; do
|
|
[[ "$line" =~ ^[[:space:]]*# ]] && continue
|
|
[[ "$line" =~ ^[[:space:]]*\/ ]] && continue
|
|
[[ "$line" =~ ^[[:space:]]*\/ ]] && continue
|
|
echo "$line"
|
|
done < "$filename"
|
|
|
|
done |