1
0
mirror of https://github.com/json-iterator/go.git synced 2025-06-15 22:50:24 +02:00

implement skip number and string strictly

This commit is contained in:
Tao Wen
2017-07-18 09:01:43 +08:00
parent 9b3ec40fd9
commit 5eded4f6ae
9 changed files with 293 additions and 145 deletions

View File

@ -0,0 +1,14 @@
package test
type typeForTest string
var inputs = []string{
`""`, // valid
`"hello"`, // valid
`"`, // invalid
`"\"`, // invalid
`"\x00"`, // invalid
"\"\x00\"", // invalid
"\"\t\"", // invalid
`"\t"`, // valid
}