1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

handle unknown fns; fn.v; type fixes

This commit is contained in:
Alexander Medvednikov
2020-01-02 08:30:15 +01:00
parent c949e9e636
commit 460b35137a
11 changed files with 178 additions and 119 deletions

View File

@ -395,7 +395,7 @@ pub fn (v mut V) compile2() {
println('all .v files:')
println(v.files)
}
table := &table.Table{}
table := table.new_table()
files := parser.parse_files(v.files, table)
c := gen.cgen(files)
println('out: $v.out_name_c')