You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
505B

  1. {
  2. /* C-style comment
  3. C-style-2 comment */
  4. "c-test" : {
  5. "a" : 1,
  6. /* Internal comment c-style */
  7. "b" : 2
  8. },
  9. // C++-style comment
  10. "cpp-test" : {
  11. // Multiline comment cpp-style
  12. // Second line
  13. "c" : 3,
  14. // Comment before double
  15. "d" : 4.1,
  16. // Comment before string
  17. "e" : "e-string",
  18. // Comment before true
  19. "f" : true,
  20. // Comment before false
  21. "g" : false,
  22. // Comment before null
  23. "h" : null
  24. }
  25. }