Test skipping over symbols
import mir.deser.text.tokenizer : tokenizeString; void test(string ts, char result) { auto t = tokenizeString(ts); assert(t.skipSymbol() == result); } test("f", 0); test("foo:", ':'); test("foo,", ','); test("foo ", ' '); test("foo\n", '\n'); test("foo]", ']'); test("foo}", '}'); test("foo)", ')'); test("foo\\n", '\\');