Merge pull request #362 from ethereum/yann300-patch-2

add evm.assembly as required output
yann300-patch-1^2
yann300 4 years ago committed by GitHub
commit 712bdfa83a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      libs/remix-solidity/src/compiler/compiler-input.ts
  2. 2
      libs/remix-solidity/src/compiler/types.ts

@ -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 {
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' ]
} }
} }
} }

Loading…
Cancel
Save