File tree Expand file tree Collapse file tree 3 files changed +34
-0
lines changed
test/cmdlineTests/combined_json_with_devdoc Expand file tree Collapse file tree 3 files changed +34
-0
lines changed Original file line number Diff line number Diff line change 1+ --combined-json devdoc --pretty-json --allow-paths .
Original file line number Diff line number Diff line change 1+ // SPDX-License-Identifier: GPL-3.0
2+ pragma solidity >= 0.0 ;
3+
4+ /// @dev This is devdoc.
5+ contract C {}
6+
7+ /// And this is a notice.
8+ contract D {}
Original file line number Diff line number Diff line change 1+ {
2+ "contracts":
3+ {
4+ "combined_json_with_devdoc/input.sol:C":
5+ {
6+ "devdoc":
7+ {
8+ "details": "This is devdoc.",
9+ "kind": "dev",
10+ "methods": {},
11+ "version": 1
12+ }
13+ },
14+ "combined_json_with_devdoc/input.sol:D":
15+ {
16+ "devdoc":
17+ {
18+ "kind": "dev",
19+ "methods": {},
20+ "version": 1
21+ }
22+ }
23+ },
24+ "version": "<VERSION REMOVED>"
25+ }
You can’t perform that action at this time.
0 commit comments