Merge branch 'fsfallback' of https://github.com/ethereum/remix-project into fsfallback
commit
40b9b41f85
@ -0,0 +1,12 @@ |
|||||||
|
'use strict' |
||||||
|
import { ValueType } from './ValueType' |
||||||
|
|
||||||
|
export class FunctionType extends ValueType { |
||||||
|
constructor (type, stateDefinitions, contractName, location) { |
||||||
|
super(1, 8, 'function') |
||||||
|
} |
||||||
|
|
||||||
|
decodeValue (value) { |
||||||
|
return 'at program counter ' + value |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue