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