solidity/test/cmdlineTests/output_selection_single_A1/input.json

22 lines
584 B
JSON
Raw Normal View History

2019-07-01 16:50:31 +00:00
{
"language": "Solidity",
"sources": {
"a.sol": {
2020-05-13 01:52:11 +00:00
"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); } }"
2019-07-01 16:50:31 +00:00
},
"b.sol": {
2020-05-13 01:52:11 +00:00
"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); } }"
2019-07-01 16:50:31 +00:00
}
},
"settings": {
"evmVersion": "petersburg",
"outputSelection": {
"a.sol": {
"A1": [
"evm.bytecode.object"
]
}
}
}
}