mirror of
https://github.com/AleoHQ/leo.git
synced 2024-11-11 04:49:15 +03:00
[ABNF] Adapt ABNF to removal of unsized arrays.
This "merges" the two previous slightly different notions of array type dimensions and array expression dimension(s) into one notion of array dimensions, in which the dimensions have to be natural numbers. (Previously, array type dimensions were allowed to be unspecified (via underscores), while array expression dimensions had to be specified.)
This commit is contained in:
parent
1a45295372
commit
c30df925ef
@ -650,15 +650,11 @@ tuple-type = "(" [ type 1*( "," type ) ] ")"
|
||||
; and an indication of dimensions.
|
||||
; There is either a single dimension,
|
||||
; or a tuple of one or more dimensions.
|
||||
; Each dimension is natural.
|
||||
; Each dimension is a natural.
|
||||
|
||||
array-type = "[" type ";" array-type-dimensions "]"
|
||||
array-type = "[" type ";" array-dimensions "]"
|
||||
|
||||
array-type-dimension = natural / "_"
|
||||
|
||||
array-type-dimensions = array-type-dimension
|
||||
/ "(" array-type-dimension
|
||||
*( "," array-type-dimension ) [","] ")"
|
||||
array-dimensions = natural / "(" natural *( "," natural ) ")"
|
||||
|
||||
; The keyword `Self` denotes the enclosing circuit type.
|
||||
; It is only allowed inside a circuit type declaration.
|
||||
@ -756,10 +752,7 @@ array-inline-construction = "["
|
||||
|
||||
array-inline-element = expression / "..." expression
|
||||
|
||||
array-repeat-construction = "[" expression ";" array-expression-dimensions "]"
|
||||
|
||||
array-expression-dimensions = natural
|
||||
/ "(" natural *( "," natural ) ")"
|
||||
array-repeat-construction = "[" expression ";" array-dimensions "]"
|
||||
|
||||
array-construction = array-inline-construction / array-repeat-construction
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user