Add support for tab in basic string value and quoted key (#364)
This commit is contained in:
@@ -707,6 +707,15 @@ func TestEscapeInString(t *testing.T) {
|
||||
})
|
||||
}
|
||||
|
||||
func TestTabInString(t *testing.T) {
|
||||
testFlow(t, `foo = "hello world"`, []token{
|
||||
{Position{1, 1}, tokenKey, "foo"},
|
||||
{Position{1, 5}, tokenEqual, "="},
|
||||
{Position{1, 8}, tokenString, "hello\tworld"},
|
||||
{Position{1, 20}, tokenEOF, ""},
|
||||
})
|
||||
}
|
||||
|
||||
func TestKeyGroupArray(t *testing.T) {
|
||||
testFlow(t, "[[foo]]", []token{
|
||||
{Position{1, 1}, tokenDoubleLeftBracket, "[["},
|
||||
@@ -725,6 +734,15 @@ func TestQuotedKey(t *testing.T) {
|
||||
})
|
||||
}
|
||||
|
||||
func TestQuotedKeyTab(t *testing.T) {
|
||||
testFlow(t, "\"num\tber\" = 123", []token{
|
||||
{Position{1, 1}, tokenKey, "\"num\tber\""},
|
||||
{Position{1, 11}, tokenEqual, "="},
|
||||
{Position{1, 13}, tokenInteger, "123"},
|
||||
{Position{1, 16}, tokenEOF, ""},
|
||||
})
|
||||
}
|
||||
|
||||
func TestKeyNewline(t *testing.T) {
|
||||
testFlow(t, "a\n= 4", []token{
|
||||
{Position{1, 1}, tokenError, "keys cannot contain new lines"},
|
||||
|
||||
Reference in New Issue
Block a user