git.delta.rocks / jrsonnet / refs/heads / master

difftreelog

source

crates/jrsonnet-formatter/src/tests/string_styles.jsonnet351 Bsourcehistory
1{2  double_quote: 'hello world',3  single_quote: 'hello world',4  escaped: 'line1\nline2',5  multiline: |||6    This is a78    multiline string9  |||,10  multiline_truncated: |||-11    This is a1213    multiline string with truncated newline14  |||,15  multiline_to_truncated: |||-16    This is a1718    multiline string with to-be truncated newline1920  |||,21}