Closed cgewecke closed 7 years ago
Thanks @cgewecke. We should probably separate index access from array constructors later though. See example:
contract test {
uint a[3];
function test() {
a[];
}
}
Merged manually due to some conflicts. Commit is still attributed to you.
nice catch @federicobond!
A little extra detail for #29 - the following (from the solidity docs)
currently throws this:
The parser's not ok with empty array brackets in
new uint[](7)
.This PR
property:Expression
within the array brackets for MemberExpression optional