fmt: hide ´[]Type{} instead of []Type´ and ´(f mut Foo)´ warnings (#8528)

pull/8503/head
Lukas Neubert 2021-02-03 10:25:08 +01:00 committed by GitHub
parent 49a6f9fb39
commit ea06966fd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -94,7 +94,9 @@ fn (mut p Parser) array_init() ast.ArrayInit {
}
}
if exprs.len == 0 && p.tok.kind != .lcbr && has_type {
p.warn_with_pos('use `x := []Type{}` instead of `x := []Type`', first_pos.extend(last_pos))
if !p.pref.is_fmt {
p.warn_with_pos('use `x := []Type{}` instead of `x := []Type`', first_pos.extend(last_pos))
}
}
mut has_len := false
mut has_cap := false

View File

@ -665,7 +665,9 @@ fn (mut p Parser) fn_args() ([]table.Param, bool, bool) {
}
if p.tok.kind == .key_mut {
// TODO remove old syntax
p.warn_with_pos('use `mut f Foo` instead of `f mut Foo`', p.tok.position())
if !p.pref.is_fmt {
p.warn_with_pos('use `mut f Foo` instead of `f mut Foo`', p.tok.position())
}
is_mut = true
}
if p.tok.kind == .ellipsis {