|
@@ -100,6 +100,7 @@ class Parser {
|
|
|
}
|
|
|
}
|
|
|
props.push(floats == null ? PInts(ints) : PFloats(floats));
|
|
|
+ if (peek()==TColon) except(TColon); // Allow trailing ,
|
|
|
except(TBraceClose);
|
|
|
break;
|
|
|
default:
|
|
@@ -270,4 +271,4 @@ class Parser {
|
|
|
return new Parser().parseText(text);
|
|
|
}
|
|
|
|
|
|
-}
|
|
|
+}
|