diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-04-07 21:48:35 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-04-07 22:32:59 +0800 |
commit | b62a6949b58a2682af05e19deea7424e7e18b9d5 (patch) | |
tree | 4aa0c1ff9c15626e170cc02c5c2f8de95c9002e1 /docs/using-the-compiler.rst | |
parent | 594f207606988a8a100799e5dfcfc267de4c7361 (diff) | |
download | dexon-solidity-b62a6949b58a2682af05e19deea7424e7e18b9d5.tar.gz dexon-solidity-b62a6949b58a2682af05e19deea7424e7e18b9d5.tar.zst dexon-solidity-b62a6949b58a2682af05e19deea7424e7e18b9d5.zip |
Move the IR out of the EVM block in JSON IO
Diffstat (limited to 'docs/using-the-compiler.rst')
-rw-r--r-- | docs/using-the-compiler.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/using-the-compiler.rst b/docs/using-the-compiler.rst index f31ca329..ab7761ec 100644 --- a/docs/using-the-compiler.rst +++ b/docs/using-the-compiler.rst @@ -124,7 +124,7 @@ Input Description // devdoc - Developer documentation (natspec) // userdoc - User documentation (natspec) // metadata - Metadata - // evm.ir - New assembly format before desugaring + // ir - New assembly format before desugaring // evm.assembly - New assembly format after desugaring // evm.legacyAssemblyJSON - Old-style assembly format in JSON // evm.bytecode - All the evm.bytecode features from below @@ -207,10 +207,10 @@ Output Description userdoc: {}, // Developer documentation (natspec) devdoc: {}, + // Intermediate representation (string) + ir: "", // EVM-related outputs evm: { - // Intermediate representation (string) - ir: "", // Assembly (string) assembly: "", // Old-style assembly (string) |