mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Update using-the-compiler.rst
in outputSelection section of Compiler Input and Output JSON Description: "evm.sourceMap" should be "evm.bytecode.sourceMap" "evm.opcodes" should be "evm.bytecode.opcodes"
This commit is contained in:
parent
eba46a65fc
commit
530b47a01b
@ -147,11 +147,11 @@ Input Description
|
|||||||
},
|
},
|
||||||
// Enable the abi and opcodes output of MyContract defined in file def.
|
// Enable the abi and opcodes output of MyContract defined in file def.
|
||||||
"def": {
|
"def": {
|
||||||
"MyContract": [ "abi", "evm.opcodes" ]
|
"MyContract": [ "abi", "evm.bytecode.opcodes" ]
|
||||||
},
|
},
|
||||||
// Enable the source map output of every single contract.
|
// Enable the source map output of every single contract.
|
||||||
"*": {
|
"*": {
|
||||||
"*": [ "evm.sourceMap" ]
|
"*": [ "evm.bytecode.sourceMap" ]
|
||||||
},
|
},
|
||||||
// Enable the legacy AST output of every single file.
|
// Enable the legacy AST output of every single file.
|
||||||
"*": {
|
"*": {
|
||||||
|
Loading…
Reference in New Issue
Block a user