tree-sitter-java-orchard 0.5.3 → 0.5.5
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 +31 -27
- package/package.json +1 -1
- package/src/grammar.json +209 -332
- package/src/node-types.json +12 -0
- package/src/parser.c +44370 -43886
- package/tree-sitter-java_orchard.wasm +0 -0
- package/tree-sitter.json +1 -1
package/src/node-types.json
CHANGED
|
@@ -480,6 +480,10 @@
|
|
|
480
480
|
{
|
|
481
481
|
"type": "interface_declaration",
|
|
482
482
|
"named": true
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"type": "record_declaration",
|
|
486
|
+
"named": true
|
|
483
487
|
}
|
|
484
488
|
]
|
|
485
489
|
}
|
|
@@ -3101,6 +3105,10 @@
|
|
|
3101
3105
|
{
|
|
3102
3106
|
"type": "record_pattern_body",
|
|
3103
3107
|
"named": true
|
|
3108
|
+
},
|
|
3109
|
+
{
|
|
3110
|
+
"type": "scoped_type_identifier",
|
|
3111
|
+
"named": true
|
|
3104
3112
|
}
|
|
3105
3113
|
]
|
|
3106
3114
|
}
|
|
@@ -3140,6 +3148,10 @@
|
|
|
3140
3148
|
"type": "identifier",
|
|
3141
3149
|
"named": true
|
|
3142
3150
|
},
|
|
3151
|
+
{
|
|
3152
|
+
"type": "modifiers",
|
|
3153
|
+
"named": true
|
|
3154
|
+
},
|
|
3143
3155
|
{
|
|
3144
3156
|
"type": "underscore_pattern",
|
|
3145
3157
|
"named": true
|