aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-02-09 03:16:23 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-02-09 07:41:48 +0800
commitcd81e58e3be5dd52a138f3ccac4ab2a305979acc (patch)
tree4074354e2998610f91c80fdfb9a4d86c150bb88a /docs
parent749db7608b269b4b2dde7649d63f32c87184f2b7 (diff)
downloaddexon-solidity-cd81e58e3be5dd52a138f3ccac4ab2a305979acc.tar
dexon-solidity-cd81e58e3be5dd52a138f3ccac4ab2a305979acc.tar.gz
dexon-solidity-cd81e58e3be5dd52a138f3ccac4ab2a305979acc.tar.bz2
dexon-solidity-cd81e58e3be5dd52a138f3ccac4ab2a305979acc.tar.lz
dexon-solidity-cd81e58e3be5dd52a138f3ccac4ab2a305979acc.tar.xz
dexon-solidity-cd81e58e3be5dd52a138f3ccac4ab2a305979acc.tar.zst
dexon-solidity-cd81e58e3be5dd52a138f3ccac4ab2a305979acc.zip
Drop the legacy assembly output
Diffstat (limited to 'docs')
-rw-r--r--docs/using-the-compiler.rst15
1 files changed, 6 insertions, 9 deletions
diff --git a/docs/using-the-compiler.rst b/docs/using-the-compiler.rst
index 9ea1a6ab..f197c663 100644
--- a/docs/using-the-compiler.rst
+++ b/docs/using-the-compiler.rst
@@ -136,15 +136,14 @@ Input Description
// devdoc - Developer documentation (natspec)
// userdoc - User documentation (natspec)
// metadata - Metadata
- // evm.ir - New assembly format before desugaring (not supported atm)
- // evm.assembly - New assembly format after desugaring (not supported atm)
- // evm.asm - Current assembly format (--asm)
- // evm.asmJSON - Current assembly format in JSON (--asm-json)
+ // evm.ir - New assembly format before desugaring
+ // evm.assembly - New assembly format after desugaring
+ // evm.legacyAssemblyJSON - Old-style assembly format in JSON
// evm.opcodes - Opcodes list
// evm.methodIdentifiers - The list of function hashes
// evm.gasEstimates - Function gas estimates
- // evm.bytecode - Bytecode (--bin)
- // evm.deployedBytecode - Deployed bytecode (--bin-runtime)
+ // evm.bytecode - Bytecode
+ // evm.deployedBytecode - Deployed bytecode
// evm.sourceMap - Source mapping (useful for debugging)
// ewasm.wast - eWASM S-expressions format (not supported atm)
// ewasm.wasm - eWASM binary format (not supported atm)
@@ -218,9 +217,7 @@ Output Description
// Assembly (string)
assembly: "",
// Old-style assembly (string)
- asm: "",
- // Old-style assembly (JSON object)
- asmJSON: [],
+ legacyAssemblyJSON: [],
// Bytecode and related details.
bytecode: {
// The bytecode as a hex string.