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

output ast from compilation result
pull/7/head
yann300 5 years ago committed by GitHub
commit 44434998c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      remix-solidity/src/compiler/compiler-input.js

@ -13,7 +13,7 @@ module.exports = (sources, opts) => {
libraries: opts.libraries,
outputSelection: {
'*': {
'': [ 'legacyAST' ],
'': [ 'legacyAST', 'ast' ],
'*': [ 'abi', 'metadata', 'devdoc', 'userdoc', 'evm.legacyAssembly', 'evm.bytecode', 'evm.deployedBytecode', 'evm.methodIdentifiers', 'evm.gasEstimates' ]
}
}

Loading…
Cancel
Save