Unverified Commit 44434998 authored by yann300's avatar yann300 Committed by GitHub

Merge pull request #1236 from ethereum/yann300-patch-21

output ast from compilation result
parents f1cf75bb 500b2344
...@@ -13,7 +13,7 @@ module.exports = (sources, opts) => { ...@@ -13,7 +13,7 @@ module.exports = (sources, opts) => {
libraries: opts.libraries, libraries: opts.libraries,
outputSelection: { outputSelection: {
'*': { '*': {
'': [ 'legacyAST' ], '': [ 'legacyAST', 'ast' ],
'*': [ 'abi', 'metadata', 'devdoc', 'userdoc', 'evm.legacyAssembly', 'evm.bytecode', 'evm.deployedBytecode', 'evm.methodIdentifiers', 'evm.gasEstimates' ] '*': [ 'abi', 'metadata', 'devdoc', 'userdoc', 'evm.legacyAssembly', 'evm.bytecode', 'evm.deployedBytecode', 'evm.methodIdentifiers', 'evm.gasEstimates' ]
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment