rename storageStore/memoryStore

pull/7/head
yann300 8 years ago
parent 603eedc78f
commit b7fea53b47
  1. 8
      src/solidity/types/RefType.js

@ -27,9 +27,9 @@ class RefType {
} }
var offset = stack[stack.length - 1 - stackDepth] var offset = stack[stack.length - 1 - stackDepth]
offset = parseInt(offset, 16) offset = parseInt(offset, 16)
if (this.storageStore()) { if (this.isInStorage()) {
return this.decodeFromStorage({ offset: 0, slot: offset }, storage) return this.decodeFromStorage({ offset: 0, slot: offset }, storage)
} else if (this.memoryStore()) { } else if (this.isInMemory()) {
return this.decodeFromMemoryInternal(offset, memory) return this.decodeFromMemoryInternal(offset, memory)
} else { } else {
return { error: '<decoding failed - no decoder for ' + this.location + '>' } return { error: '<decoding failed - no decoder for ' + this.location + '>' }
@ -54,7 +54,7 @@ class RefType {
* *
* @return {Bool} - return true if the type is defined in the storage * @return {Bool} - return true if the type is defined in the storage
*/ */
storageStore () { isInStorage () {
return this.location.indexOf('storage') === 0 return this.location.indexOf('storage') === 0
} }
@ -63,7 +63,7 @@ class RefType {
* *
* @return {Bool} - return true if the type is defined in the memory * @return {Bool} - return true if the type is defined in the memory
*/ */
memoryStore () { isInMemory () {
return this.location.indexOf('memory') === 0 return this.location.indexOf('memory') === 0
} }
} }

Loading…
Cancel
Save