(self)
| 1378 | """String theory operations.""" |
| 1379 | |
| 1380 | def test_string_literal(self): |
| 1381 | s = StringVal("hello") |
| 1382 | assert isinstance(s._ast, StringLit) |
| 1383 | assert s._ast.val == "hello" |
| 1384 | assert is_string_value(s) |
| 1385 | |
| 1386 | def test_string_variable(self): |
| 1387 | s = String("s") |
nothing calls this directly
no test coverage detected