v2: fix a bug with `mod.const`

pull/3859/head
Alexander Medvednikov 2020-02-27 03:30:17 +01:00
parent a5db9c3519
commit 06fc8a830b
1 changed files with 3 additions and 2 deletions

View File

@ -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'
}