(_input, _elements)
| 44 | }); |
| 45 | |
| 46 | function traverseAST(_input, _elements) { |
| 47 | if (_input.children) { |
| 48 | for (var i = 0; i < _input.children.length; i++) { |
| 49 | traverseAST(_input.children[i], _elements); |
| 50 | } |
| 51 | } |
| 52 | _elements.push(_input); |
| 53 | } |
| 54 | |
| 55 | function compareStorageLayouts(logicLayout, proxyLayout) { |
| 56 | function makeComp(x) { |