(Schema schema, Bytecode[] bytecodes)
| 137 | } |
| 138 | |
| 139 | protected Item[] constructItems(Schema schema, Bytecode[] bytecodes) { |
| 140 | Item[] items = new Item[bytecodes.length]; |
| 141 | // |
| 142 | for(int i=0;i!=items.length;++i) { |
| 143 | constructItem(i,schema,bytecodes,items); |
| 144 | } |
| 145 | // |
| 146 | return items; |
| 147 | } |
| 148 | |
| 149 | protected void constructItem(int index, Schema schema, Bytecode[] bytecodes, Item[] items) { |
| 150 | // FIXME: this fails in the presence of truly recursive items. |
no test coverage detected