vdf icon indicating copy to clipboard operation
vdf copied to clipboard

Does not work on lists of objects

Open BryceRussell opened this issue 3 years ago • 0 comments

Some of the files I am parsing have objects inside of a list and it throws [ vdf.parse: expected openning bracket ] as an error pointing to the line with [

"Object"
{
    "Key" "Val"
    "Object"
    [ // <-- Error points to this line
        {
            "Object"
            {
                "Key" "Val"
            }
            "Key" "Val"
        }
        {
            "Object"
            {
                "Key" "Val"
            }
            "Key" "Val"
        }
    ]
}

BryceRussell avatar Feb 13 '22 20:02 BryceRussell