Tests and changelog

This commit is contained in:
hrkrshnn
2021-04-08 17:06:24 +02:00
parent b7795b86c1
commit e96a161115
6 changed files with 871 additions and 2 deletions
@@ -0,0 +1,25 @@
contract C {
function f() public pure {
/// Documentation for x; will appear in ast json
uint x = 1;
for (
/// documentation for i; will not appear in ast json
uint i = 0;
i < 10;
++i
) {
/// documentation for j; will appear in ast json
uint j = 0;
}
}
function g(
/// documentation for param1; will not appear in ast json
uint param1,
/// documentation for param2; will not appear in ast json
uint param2,
/// documentation for param3; will not appear in ast json
uint param3
) public {}
}
// ----