(t *testing.T)
| 36 | } |
| 37 | |
| 38 | func TestInvalidASCIIUnicodeIdentifier(t *testing.T) { |
| 39 | testExpectedError(t, |
| 40 | &fflib.LexerError{}, |
| 41 | `aå`, |
| 42 | &Xstring{}) |
| 43 | } |
| 44 | |
| 45 | func TestInvalidBraceComma(t *testing.T) { |
| 46 | testExpectedError(t, |
nothing calls this directly
no test coverage detected
searching dependent graphs…