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

parser: warning about unused imports

This commit is contained in:
yuyi
2020-05-14 23:14:24 +08:00
committed by GitHub
parent c3fe2135a4
commit 6d0b791ac8
18 changed files with 46 additions and 27 deletions

View File

@@ -1,7 +1,6 @@
module builder
import os
import time
import v.ast
import v.table
import v.pref
@@ -9,10 +8,6 @@ import v.util
import v.vmod
import v.checker
import v.parser
import v.errors
import v.gen
import v.gen.js
import v.gen.x64
import v.depgraph
const (

View File

@@ -6,8 +6,6 @@ module builder
import time
import os
import v.pref
import v.util
import strings
fn get_vtmp_folder() string {
vtmp := os.join_path(os.temp_dir(), 'v')

View File

@@ -1,7 +1,6 @@
module builder
import time
import os
import v.parser
import v.pref
import v.gen