mirror of
https://github.com/vlang/v.git
synced 2025-09-14 23:12:33 +03:00
os.File clean up + socket.v (dial())
This commit is contained in:
parent
386367c3d5
commit
61b51f6149
6 changed files with 94 additions and 9 deletions
|
@ -823,7 +823,6 @@ fn new_v(args []string) *V {
|
|||
files << f
|
||||
}
|
||||
}
|
||||
obfuscate := args.contains('-obf')
|
||||
return &V {
|
||||
os: _os
|
||||
out_name: out_name
|
||||
|
@ -839,7 +838,7 @@ fn new_v(args []string) *V {
|
|||
is_play: args.contains('play')
|
||||
is_prod: args.contains('-prod')
|
||||
is_verbose: args.contains('-verbose')
|
||||
obfuscate: obfuscate
|
||||
obfuscate: args.contains('-obf')
|
||||
is_prof: args.contains('-prof')
|
||||
is_live: args.contains('-live')
|
||||
sanitize: args.contains('-sanitize')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue