Closed wegendt-bosch closed 5 years ago
jenkins retest this please now that we fixed xtext?
jenkins retest this please I was impatient
Review:
string
, not string<>
)It turns out that making only size parameters optional is more complicated than I thought. Would it be ok to allow only the following for now:
var a: string;
var b: string<?>;
var c: array;
var d: array<uint8, ?>
but not:
var e: array<uint8>
so only all or no type arguments specified is allowed.
so only all or no type arguments specified is allowed.
Sounds good to me ... the rule is straight forward enough to be easy to understand and enables the var a: string
use-case.
Closes #2