()
| 447 | |
| 448 | |
| 449 | def test_tuple_getitem(): |
| 450 | tuple_getitem_node = relax.TupleGetItem(relax.Tuple([x, y]), 0) |
| 451 | basic_check( |
| 452 | tuple_getitem_node, |
| 453 | "\n".join(["TupleGetItem", "\tTuple", "\t\tVar", "\t\tVar"]), |
| 454 | "\n".join(["Var", "Var", "Tuple", "TupleGetItem"]), |
| 455 | ) |
| 456 | |
| 457 | |
| 458 | def test_binding_block(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…