(t *testing.T)
| 71 | } |
| 72 | |
| 73 | func TestInvalidGarbageAfterNewline(t *testing.T) { |
| 74 | testExpectedError(t, |
| 75 | &fflib.LexerError{}, |
| 76 | "[1,2,3]\nfoo", |
| 77 | &Xarray{}) |
| 78 | } |
| 79 | |
| 80 | func TestInvalidGarbageAtEnd(t *testing.T) { |
| 81 | testExpectedError(t, |
nothing calls this directly
no test coverage detected
searching dependent graphs…