aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-03-30 05:23:35 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-03-30 05:23:35 +0800
commitf6828fc7c3d5543837436f932a79ea9c21cf78e0 (patch)
treefc120fbedf61bb23deef7381ae6d09b1919e872c
parent917175eedcd4a397cbac4c29eb8a45042a9cc10d (diff)
downloaddexon-solidity-f6828fc7c3d5543837436f932a79ea9c21cf78e0.tar.gz
dexon-solidity-f6828fc7c3d5543837436f932a79ea9c21cf78e0.tar.zst
dexon-solidity-f6828fc7c3d5543837436f932a79ea9c21cf78e0.zip
Reorder for readiability
-rw-r--r--docs/using-the-compiler.rst16
1 files changed, 9 insertions, 7 deletions
diff --git a/docs/using-the-compiler.rst b/docs/using-the-compiler.rst
index 3b530a29..c0602d5f 100644
--- a/docs/using-the-compiler.rst
+++ b/docs/using-the-compiler.rst
@@ -199,6 +199,13 @@ Output Description
// The Ethereum Contract ABI. If empty, it is represented as an empty array.
// See https://github.com/ethereum/wiki/wiki/Ethereum-Contract-ABI
abi: [],
+ // See the Metadata Output documentation
+ metadata: {},
+ // User documentation (natspec)
+ userdoc: {},
+ // Developer documentation (natspec)
+ devdoc: {},
+ // EVM-related outputs
evm: {
// Intermediate representation (string)
ir: "",
@@ -246,18 +253,13 @@ Output Description
}
}
},
- // See the Metadata Output documentation
- metadata: {},
+ // eWASM related outputs
ewasm: {
// S-expressions format
wast: "",
// Binary format (hex string)
wasm: ""
- },
- // User documentation (natspec)
- userdoc: {},
- // Developer documentation (natspec)
- devdoc: {}
+ }
}
}
},