diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-04-07 22:34:38 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-04-07 22:34:38 +0800 |
commit | c22ba034176f2de703de4ead984aa5b45864a14c (patch) | |
tree | 99553db9c593ecfc8e8387a24409518a261b039a /docs | |
parent | fea26bc4ba60200219884ed6fe0a77dc8036eaeb (diff) | |
download | dexon-solidity-c22ba034176f2de703de4ead984aa5b45864a14c.tar dexon-solidity-c22ba034176f2de703de4ead984aa5b45864a14c.tar.gz dexon-solidity-c22ba034176f2de703de4ead984aa5b45864a14c.tar.bz2 dexon-solidity-c22ba034176f2de703de4ead984aa5b45864a14c.tar.lz dexon-solidity-c22ba034176f2de703de4ead984aa5b45864a14c.tar.xz dexon-solidity-c22ba034176f2de703de4ead984aa5b45864a14c.tar.zst dexon-solidity-c22ba034176f2de703de4ead984aa5b45864a14c.zip |
Support selecting group of outputs
Diffstat (limited to 'docs')
-rw-r--r-- | docs/using-the-compiler.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/using-the-compiler.rst b/docs/using-the-compiler.rst index 9f3ac3cc..3b71e492 100644 --- a/docs/using-the-compiler.rst +++ b/docs/using-the-compiler.rst @@ -127,7 +127,6 @@ Input Description // ir - New assembly format before desugaring // evm.assembly - New assembly format after desugaring // evm.legacyAssembly - Old-style assembly format in JSON - // evm.bytecode - All the evm.bytecode features from below // evm.bytecode.object - Bytecode object // evm.bytecode.opcodes - Opcodes list // evm.bytecode.sourceMap - Source mapping (useful for debugging) @@ -137,6 +136,10 @@ Input Description // evm.gasEstimates - Function gas estimates // ewasm.wast - eWASM S-expressions format (not supported atm) // ewasm.wasm - eWASM binary format (not supported atm) + // + // Note that using a using `evm`, `evm.bytecode`, `ewasm`, etc. will select every + // target part of that output. + // outputSelection: { // Enable the metadata and bytecode outputs of every single contract. "*": { |