(t *testing.T)
| 92 | } |
| 93 | |
| 94 | func TestInvalidEscape(t *testing.T) { |
| 95 | testExpectedError(t, |
| 96 | &fflib.LexerError{}, |
| 97 | `"\a <-- invalid escape"`, |
| 98 | &Xstring{}) |
| 99 | } |
| 100 | |
| 101 | func TestInvalidIdentifier(t *testing.T) { |
| 102 | testExpectedError(t, |
nothing calls this directly
no test coverage detected
searching dependent graphs…