pdsl
pdsl copied to clipboard
Misplaced comma should throw
This should throw because there is a missing comma but it doesn't
p`{|
name: "foo",
exact: {
hello:"hello"
}
loose: {
hello: "hello",
...
}
|}`({
name: "foo",
exact: {
hello: "hello"
},
loose: {
hello: "hello",
extra: true,
other: 10
}
});