()
| 121 | |
| 122 | |
| 123 | def test_subscript_variable_resolving(): |
| 124 | src = """ |
| 125 | x = "Hello world" |
| 126 | y = x |
| 127 | y[::2] |
| 128 | """ |
| 129 | tree = process_source_code(src) |
| 130 | assert isinstance(tree, String) |
| 131 | assert str(tree) == 'Hlowrd' |
| 132 | |
| 133 | |
| 134 | def test_return_statement_constat_propagation(): |
nothing calls this directly
no test coverage detected