(t *testing.T)
| 113 | } |
| 114 | |
| 115 | func TestInvalidNegativeFloat(t *testing.T) { |
| 116 | testExpectedError(t, |
| 117 | &fflib.LexerError{}, |
| 118 | `-124.123foo`, |
| 119 | &Xfloat64{}) |
| 120 | } |
| 121 | |
| 122 | func TestInvalidSecondSurrogate(t *testing.T) { |
| 123 | testExpectedError(t, |
nothing calls this directly
no test coverage detected
searching dependent graphs…