(v, type)
| 12381 | return result; |
| 12382 | } |
| 12383 | insertUncheckedCast(v, type) { |
| 12384 | const n = this.create('prim::unchecked_cast', [v]); |
| 12385 | this.insertNode(n); |
| 12386 | n.output().setType(type); |
| 12387 | return n.output(); |
| 12388 | } |
| 12389 | insertToList(v, type) { |
| 12390 | let dim = 0; |
| 12391 | let ptr = type; |
no test coverage detected