tree-sitter-java-orchard 0.5.3 → 0.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/grammar.js +1 -1
- package/package.json +1 -1
- package/src/grammar.json +23 -2
- package/src/parser.c +29250 -29351
- package/tree-sitter-java_orchard.wasm +0 -0
- package/tree-sitter.json +1 -1
package/grammar.js
CHANGED
package/package.json
CHANGED
package/src/grammar.json
CHANGED
|
@@ -3669,8 +3669,29 @@
|
|
|
3669
3669
|
"type": "CHOICE",
|
|
3670
3670
|
"members": [
|
|
3671
3671
|
{
|
|
3672
|
-
"type": "
|
|
3673
|
-
"
|
|
3672
|
+
"type": "SEQ",
|
|
3673
|
+
"members": [
|
|
3674
|
+
{
|
|
3675
|
+
"type": "SYMBOL",
|
|
3676
|
+
"name": "pattern"
|
|
3677
|
+
},
|
|
3678
|
+
{
|
|
3679
|
+
"type": "REPEAT",
|
|
3680
|
+
"content": {
|
|
3681
|
+
"type": "SEQ",
|
|
3682
|
+
"members": [
|
|
3683
|
+
{
|
|
3684
|
+
"type": "STRING",
|
|
3685
|
+
"value": ","
|
|
3686
|
+
},
|
|
3687
|
+
{
|
|
3688
|
+
"type": "SYMBOL",
|
|
3689
|
+
"name": "pattern"
|
|
3690
|
+
}
|
|
3691
|
+
]
|
|
3692
|
+
}
|
|
3693
|
+
}
|
|
3694
|
+
]
|
|
3674
3695
|
},
|
|
3675
3696
|
{
|
|
3676
3697
|
"type": "SEQ",
|