fmt: improve single line const comment placement (#13595)
parent
9535d38645
commit
73f931b52e
|
@ -1099,7 +1099,7 @@ fn generate_scalar(size int) ?Scalar {
|
|||
return reflect.ValueOf(s)
|
||||
*/
|
||||
mut s := edwards25519.sc_zero
|
||||
diceroll := rand.intn(100) or {0}
|
||||
diceroll := rand.intn(100) or { 0 }
|
||||
match true {
|
||||
/*
|
||||
case diceroll == 0:
|
||||
|
|
|
@ -842,10 +842,25 @@ pub fn (mut f Fmt) const_decl(node ast.ConstDecl) {
|
|||
f.write(strings.repeat(` `, align_infos[align_idx].max - field.name.len))
|
||||
f.write('= ')
|
||||
f.expr(field.expr)
|
||||
if node.is_block {
|
||||
f.writeln('')
|
||||
} else {
|
||||
// Write out single line comments after const expr if present
|
||||
// E.g.: `const x = 1 // <comment>`
|
||||
if node.end_comments.len > 0 && node.end_comments[0].text.contains('\n') {
|
||||
f.writeln('\n')
|
||||
}
|
||||
f.comments(node.end_comments, inline: true)
|
||||
}
|
||||
prev_field = field
|
||||
}
|
||||
|
||||
if node.is_block {
|
||||
f.comments_after_last_field(node.end_comments)
|
||||
} else if node.end_comments.len == 0 {
|
||||
// If no single line comments after the const expr is present
|
||||
f.writeln('')
|
||||
}
|
||||
if node.is_block {
|
||||
f.indent--
|
||||
f.writeln(')\n')
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
// leave
|
||||
const one = 1 // leave
|
||||
|
||||
// move
|
||||
|
||||
const two = 2
|
||||
|
||||
/*
|
||||
move
|
||||
*/
|
||||
|
||||
const three = 3 // rewrite and leave
|
||||
|
||||
// leave
|
||||
const four = 4 // leave
|
|
@ -0,0 +1,11 @@
|
|||
// leave
|
||||
const one = 1 // leave
|
||||
// move
|
||||
|
||||
const two = 2 /* move
|
||||
*/
|
||||
|
||||
const three = 3 /* rewrite and leave */
|
||||
|
||||
// leave
|
||||
const four = 4 // leave
|
|
@ -2,3 +2,8 @@ const (
|
|||
fsm_state_array = ['init', 'state_a', 'state_b', 'state_c', 'exit'] // use as a first half key for map see fsm_state_ev_fn, the same order as in enum FSM_state
|
||||
fsm_event_array = ['ev1', 'ev2', 'ev3', 'ev4', 'ev5'] // use as a second half key for map see fsm_state_ev_fn, the same order as in enum FSM_event
|
||||
)
|
||||
|
||||
// Keep
|
||||
const one = 1 // Keep
|
||||
|
||||
// Keep
|
||||
|
|
|
@ -3292,6 +3292,8 @@ fn (mut p Parser) const_decl() ast.ConstDecl {
|
|||
p.top_level_statement_end()
|
||||
if is_block {
|
||||
p.check(.rpar)
|
||||
} else {
|
||||
comments << p.eat_comments(same_line: true)
|
||||
}
|
||||
return ast.ConstDecl{
|
||||
pos: start_pos.extend_with_last_line(const_pos, p.prev_tok.line_nr)
|
||||
|
|
Loading…
Reference in New Issue