Extract AST JSON tests.

This commit is contained in:
Daniel Kirchner
2018-08-03 20:35:50 +02:00
parent d923926ff7
commit 55386ba130
54 changed files with 4753 additions and 470 deletions
@@ -0,0 +1,17 @@
// ---- SOURCE: a
/**This contract is empty*/ contract C {}
// ---- SOURCE: b
/**This contract is empty
and has a line-breaking comment.*/
contract C {}
// ---- SOURCE: c
contract C {
/** Some comment on Evt.*/ event Evt();
/** Some comment on mod.*/ modifier mod() { _; }
/** Some comment on fn.*/ function fn() public {}
}