compiler: fix os import by default in v scripts

pull/2386/head
joe-conigliaro 2019-10-17 19:52:46 +11:00 committed by Alexander Medvednikov
parent 22e7e807f3
commit 4932a32d91
1 changed files with 2 additions and 1 deletions

View File

@ -560,7 +560,8 @@ pub fn (v mut V) add_v_files_to_compile() {
v.log('imports0:')
println(v.table.imports)
println(v.files)
p.import_table.register_alias('os', 'os', 0)
p.import_table.register_import('os', 0)
v.table.file_imports[p.file_path_id] = p.import_table
p.table.imports << 'os'
p.table.register_module('os')
println('got v script')