Inline '_function_declaration_common'
This is purely an de-duplication rule, we don't need to make it part of the parse tree.
This commit is contained in:
parent
0b549493a2
commit
82bbebeeb5
|
@ -24,6 +24,7 @@ module.exports = grammar({
|
||||||
inline: ($) => [
|
inline: ($) => [
|
||||||
$._type_identifier,
|
$._type_identifier,
|
||||||
$._field_identifier,
|
$._field_identifier,
|
||||||
|
$._function_declaration_common,
|
||||||
],
|
],
|
||||||
|
|
||||||
conflicts: ($) => [
|
conflicts: ($) => [
|
||||||
|
|
|
@ -1529,7 +1529,8 @@
|
||||||
],
|
],
|
||||||
"inline": [
|
"inline": [
|
||||||
"_type_identifier",
|
"_type_identifier",
|
||||||
"_field_identifier"
|
"_field_identifier",
|
||||||
|
"_function_declaration_common"
|
||||||
],
|
],
|
||||||
"supertypes": []
|
"supertypes": []
|
||||||
}
|
}
|
||||||
|
|
3229
src/parser.c
3229
src/parser.c
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue