solidity-parser / parser

A Solidity parser for JS built on top of a robust ANTLR4 grammar
MIT License
157 stars 44 forks source link

Cannot parse nested arrays in abi.decode #54

Closed fvictorio closed 2 years ago

fvictorio commented 3 years ago

This throws:

contract Foo {
  function f() public {
    (uint[][] memory x, uint y) = abi.decode(data, (uint[][], uint));
  }
}