(self)
| 2838 | """Test ExprRef.arg(), .num_args(), .children(), .decl(), .sexpr(), .params().""" |
| 2839 | |
| 2840 | def test_binop_num_args(self): |
| 2841 | x, y = Ints("x y") |
| 2842 | e = x + y |
| 2843 | assert e.num_args() == 2 |
| 2844 | |
| 2845 | def test_binop_arg(self): |
| 2846 | x, y = Ints("x y") |