mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
cmdline: minor optimizaztion
This commit is contained in:
parent
fb54a2635c
commit
ec9566988a
@ -39,11 +39,9 @@ pub fn option(args []string, param string, def string) string {
|
||||
// what: ['test']
|
||||
// ret: ['-stat']
|
||||
pub fn options_before(args []string, what []string) []string {
|
||||
mut found := false
|
||||
mut args_before := []string
|
||||
for a in args {
|
||||
if a in what {
|
||||
found = true
|
||||
break
|
||||
}
|
||||
args_before << a
|
||||
|
Loading…
Reference in New Issue
Block a user