(self)
| 4296 | |
| 4297 | class TestStringRegexExtras: |
| 4298 | def test_last_index_of(self): |
| 4299 | s = String("s") |
| 4300 | t = String("t") |
| 4301 | result = LastIndexOf(s, t) |
| 4302 | assert isinstance(result, ArithRef) |
| 4303 | |
| 4304 | def test_str_to_code(self): |
| 4305 | s = StringVal("a") |
nothing calls this directly
no test coverage detected