Commit 030d708c authored by yann300's avatar yann300

add evm.assembly as required output

parent fa5b9ebc
...@@ -15,7 +15,7 @@ export default (sources: Source, opts: CompilerInputOptions): string => { ...@@ -15,7 +15,7 @@ export default (sources: Source, opts: CompilerInputOptions): string => {
outputSelection: { outputSelection: {
'*': { '*': {
'': [ 'legacyAST', 'ast' ], '': [ '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', 'evm.assembly' ]
} }
} }
} }
......
...@@ -123,7 +123,7 @@ export interface CompilerInput { ...@@ -123,7 +123,7 @@ export interface CompilerInput {
outputSelection?: { outputSelection?: {
'*': { '*': {
'': [ 'legacyAST', 'ast' ], '': [ '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', 'evm.assembly' ]
} }
} }
} }
......
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