git.delta.rocks / jrsonnet / refs/commits / 4874d05f66f9

difftreelog

source

crates/jrsonnet-formatter/src/tests/comments.jsonnet154 Bsourcehistory
1// File header comment2{3  // Comment above field4  foo: 'bar',5  /* Block comment */6  baz: 'qux',7  nested: {8    // Hash comment9    value: 42,10  },11}