Skip to content

Commit e125cd4

Browse files
committed
feat(index): add COBOL support to language selector and tree-sitter integration
1 parent a8e93a1 commit e125cd4

File tree

4 files changed

+15
-1
lines changed

4 files changed

+15
-1
lines changed

index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ <h1>AutoDev Syntax Tree Playground</h1>
4040
<option value="c">C</option>
4141
<option value="cpp">C++</option>
4242
<option value="c_sharp">C#</option>
43+
<option value="COBOL">COBOL</option>
4344
<option value="go">Go</option>
4445
<option value="java">Java</option>
4546
<option value="javascript">JavaScript</option>

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
"tree-sitter-rescript": "github:rescript-lang/tree-sitter-rescript#6376fa028f31aa4e26ca2c8f007e322cd2a5eb4a",
5454
"tree-sitter-bash": "^0.20.5",
5555
"tree-sitter-typescript": "git://github.com/tree-sitter/tree-sitter-typescript#v0.20.4",
56-
"tree-sitter-zig": "git://github.com/GrayJack/tree-sitter-zig#8e970cb"
56+
"tree-sitter-zig": "git://github.com/GrayJack/tree-sitter-zig#8e970cb",
57+
"tree-sitter-cobol": "git://github.com/unit-mesh/tree-sitter-cobol#8ba6692"
5758
}
5859
}

pnpm-lock.yaml

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ onlyBuiltDependencies:
77
- tree-sitter-c
88
- tree-sitter-c-sharp
99
- tree-sitter-cli
10+
- tree-sitter-cobol
1011
- tree-sitter-cpp
1112
- tree-sitter-go
1213
- tree-sitter-java

0 commit comments

Comments
 (0)