mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
v2: fix a bug with mod.const
This commit is contained in:
parent
a5db9c3519
commit
06fc8a830b
@ -2,16 +2,17 @@
|
||||
// Use of this source code is governed by an MIT license
|
||||
// that can be found in the LICENSE file.
|
||||
module parser
|
||||
|
||||
// return true if file being parsed imports `mod`
|
||||
pub fn (p &Parser) known_import(mod string) bool {
|
||||
return mod in p.imports
|
||||
}
|
||||
|
||||
fn (p &Parser) prepend_mod(name string) string {
|
||||
if p.expr_mod != '' {
|
||||
return p.expr_mod + '.' + name
|
||||
}
|
||||
if p.builtin_mod || p.mod == 'main' {
|
||||
return name
|
||||
}
|
||||
return '${p.mod}.$name'
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user