(type)
| 12311 | return n; |
| 12312 | } |
| 12313 | createObject(type) { |
| 12314 | const node = this.create('prim::CreateObject'); |
| 12315 | node.output().setType(type); |
| 12316 | return node; |
| 12317 | } |
| 12318 | createIsInstance(v, types) { |
| 12319 | const n = this.create('prim::isinstance', [v], 1); |
| 12320 | n.tys_('types', types); |
no test coverage detected