blob: 3277f43f87385f6918940f369afd9f9b9c6d612d [file] [log] [blame]
40 columns |
### Sets use most of the same formatting code as lists, so we don't test
### all of the edge cases here, just the basics.
>>> Line comment in empty set.
var set = {
// comment
};
<<<
var set = {
// comment
};
>>> Inline block comment.
var set = { /* comment */ };
<<<
var set = {/* comment */};
>>> After element.
({element // comment
});
<<<
({
element, // comment
});