()
| 868 | } |
| 869 | |
| 870 | @Test |
| 871 | public void testComments() throws IOException { |
| 872 | parse( |
| 873 | "#pre comment\n{//before a\n 'a' /* after a **/ #before separator\n : /* after separator */ {/*before b*/'b'#after b\n://before c\n'c'/*after c*/}/*after close*/}#post comment no EOL", |
| 874 | new Object[] {m, "a", m, "b", "c", M, M, e}); |
| 875 | } |
| 876 | |
| 877 | // rfc7159 permits any JSON values to be top level values |
| 878 | @Test |