1{2 comments: {3 _: '',4 // Plain comment5 a: '',67 # Plain comment with empty line before8 b: '',9 /*Single-line multiline comment1011 */12 c: '',1314 /**Single-line multiline doc comment1516 */17 c: '',1819 /**Multiline doc20 Comment21 */22 c: '',2324 /*2526 Multi-line2728 comment29 */30 d: '',3132 e: '', // Inline comment3334 k: '',3536 // Text after everything37 },38 comments2: {39 k: '',40 // Text after everything, but no newline above41 },42 spacing: {43 a: '',4445 b: '',46 },47 noSpacing: {48 a: '',49 b: '',50 },5152 smallObjectWithEnding: {/*Ending comment*/},53 smallObjectWithFieldAndEnding: {a: 11/*Ending comment*/},54 smallObjectWithFieldAndEnding2: {/*Start*/a: 11/*Ending comment*/},55 }difftreelog
source
crates/jrsonnet-formatter/src/tests/complex_comments.jsonnet823 Bsourcehistory