mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
v.parser: fix compilation of normal .v files with -translated (#13363)
This commit is contained in:
parent
31739c2586
commit
939bc9f26f
@ -426,7 +426,7 @@ fn (mut p Parser) fn_decl() ast.FnDecl {
|
||||
} else {
|
||||
name = p.prepend_mod(name)
|
||||
}
|
||||
if !p.pref.translated && language == .v {
|
||||
if language == .v {
|
||||
if existing := p.table.fns[name] {
|
||||
if existing.name != '' {
|
||||
if file_mode == .v && existing.file_mode != .v {
|
||||
|
Loading…
Reference in New Issue
Block a user