solidity/test/cmdlineTests/output_selection_single_all/input.json
2020-05-13 18:16:59 +02:00

22 lines
583 B
JSON

{
"language": "Solidity",
"sources": {
"a.sol": {
"content": "//SPDX-License-Identifier: GPL-3.0\ncontract A1 { function a(uint x) public pure { assert(x > 0); } } contract A2 { function a(uint x) public pure { assert(x > 0); } }"
},
"b.sol": {
"content": "//SPDX-License-Identifier: GPL-3.0\ncontract A1 { function b(uint x) public { assert(x > 0); } } contract B2 { function b(uint x) public pure { assert(x > 0); } }"
}
},
"settings": {
"evmVersion": "petersburg",
"outputSelection": {
"a.sol": {
"*": [
"evm.bytecode.object"
]
}
}
}
}