1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
This commit is contained in:
d2verb 2019-07-15 23:15:34 +09:00 committed by Alexander Medvednikov
parent 5a9116b697
commit 40ad868f22
2 changed files with 32 additions and 8 deletions

View File

@ -3085,12 +3085,14 @@ else {
fn (p mut Parser) return_st() {
p.cgen.insert_before(p.cur_fn.defer)
p.gen('return ')
if p.cur_fn.name == 'main' {
p.gen(' 0')
}
p.check(.key_return)
p.fgen(' ')
if p.cur_fn.name == 'main' {
p.gen('return 0')
p.returns = true
return
}
fn_returns := p.cur_fn.typ != 'void'
if fn_returns {
if p.tok == .rcbr {
@ -3101,9 +3103,15 @@ fn (p mut Parser) return_st() {
expr_type := p.bool_expression()
// Automatically wrap an object inside an option if the function returns an option
if p.cur_fn.typ.ends_with(expr_type) && p.cur_fn.typ.starts_with('Option_') {
//p.cgen.set_placeholder(ph, 'opt_ok(& ')
p.cgen.set_placeholder(ph, 'opt_ok(& ')
p.gen(', sizeof($expr_type))')
tmp := p.get_tmp()
ret := p.cgen.cur_line.right(ph)
p.cgen.cur_line = '$expr_type $tmp = ($expr_type)($ret);'
p.gen('return opt_ok(&$tmp, sizeof($expr_type))')
}
else {
ret := p.cgen.cur_line.right(ph)
p.cgen.cur_line = 'return $ret'
}
p.check_types(expr_type, p.cur_fn.typ)
}
@ -3114,6 +3122,7 @@ fn (p mut Parser) return_st() {
if false && p.tok == .name || p.tok == .integer {
p.error('function `$p.cur_fn.name` does not return a value')
}
p.gen('return')
}
p.returns = true
}

View File

@ -8,3 +8,18 @@ fn test_err(){
assert false
println(v) // suppress not used error
}
fn err_call(ok bool) ?int {
if !ok {
return error('Not ok!')
}
return 42
}
fn test_option_for_base_type_without_variable() {
val := err_call(true) or {
panic(err)
return
}
assert val == 42
}