Use 'type_identifier' in array type declaration

This commit is contained in:
Bruno BELANYI 2022-06-03 10:35:53 +02:00
parent 0827093fe7
commit 5d37bf7bd1
5 changed files with 8 additions and 5 deletions

View file

@ -93,7 +93,7 @@ type array_of_int = array of int
(type_declaration
name: (identifier)
value: (array_type
element_type: (identifier))))
element_type: (type_identifier))))
================================================================================
Array type declaration non-associativity
@ -108,7 +108,7 @@ type array_of_array_of_int = array of array of int
(type_declaration
name: (identifier)
value: (array_type
element_type: (identifier)))
element_type: (type_identifier)))
(identifier))
(identifier))