(x)
| 54 | |
| 55 | function compareStorageLayouts(logicLayout, proxyLayout) { |
| 56 | function makeComp(x) { |
| 57 | return [x.constant, x.name, x.stateVariable, x.storageLocation, x.type, x.value, x.visibility].join(":"); |
| 58 | } |
| 59 | // if(newLayout.length < oldLayout.length) return false; |
| 60 | for (var i = 0; i < logicLayout.length; i++) { |
| 61 | const a = logicLayout[i].attributes; |
no outgoing calls
no test coverage detected