solc-typed-ast icon indicating copy to clipboard operation
solc-typed-ast copied to clipboard

A TypeScript package providing a normalized typed Solidity AST along with the utilities necessary to generate the AST (from Solc) and traverse/manipulate it.

Results 22 solc-typed-ast issues
Sort by recently updated
recently updated
newest added

Given the following code: ```solidity contract C { struct S { uint x; } function foo() public { S memory s; } } ``` The type of `s` that would...