parent
56e6fd01c5
commit
c9dcdf6744
|
@ -0,0 +1,12 @@
|
||||||
|
import json
|
||||||
|
|
||||||
|
struct TodoDto {
|
||||||
|
foo int
|
||||||
|
}
|
||||||
|
|
||||||
|
fn test_decode_with_encode_arg() ? {
|
||||||
|
body := TodoDto{}
|
||||||
|
ret := json.decode(TodoDto, json.encode(body)) ?
|
||||||
|
println(ret)
|
||||||
|
assert ret.foo == 0
|
||||||
|
}
|
|
@ -0,0 +1,21 @@
|
||||||
|
import json
|
||||||
|
import os
|
||||||
|
|
||||||
|
struct DbConfig {
|
||||||
|
foo int
|
||||||
|
}
|
||||||
|
|
||||||
|
fn test_json_decode_with_optional_arg() {
|
||||||
|
if ret := print_info() {
|
||||||
|
println(ret)
|
||||||
|
} else {
|
||||||
|
println(err)
|
||||||
|
}
|
||||||
|
assert true
|
||||||
|
}
|
||||||
|
|
||||||
|
fn print_info() ?string {
|
||||||
|
dbconf := json.decode(DbConfig, os.read_file('dbconf.json') ?) ?
|
||||||
|
println(dbconf)
|
||||||
|
return '$dbconf'
|
||||||
|
}
|
|
@ -1180,10 +1180,11 @@ fn (mut g Gen) fn_call(node ast.CallExpr) {
|
||||||
is_json_encode := name == 'json.encode'
|
is_json_encode := name == 'json.encode'
|
||||||
is_json_encode_pretty := name == 'json.encode_pretty'
|
is_json_encode_pretty := name == 'json.encode_pretty'
|
||||||
is_json_decode := name == 'json.decode'
|
is_json_decode := name == 'json.decode'
|
||||||
g.is_json_fn = is_json_encode || is_json_encode_pretty || is_json_decode
|
is_json_fn := is_json_encode || is_json_encode_pretty || is_json_decode
|
||||||
mut json_type_str := ''
|
mut json_type_str := ''
|
||||||
mut json_obj := ''
|
mut json_obj := ''
|
||||||
if g.is_json_fn {
|
if is_json_fn {
|
||||||
|
g.is_json_fn = true
|
||||||
json_obj = g.new_tmp_var()
|
json_obj = g.new_tmp_var()
|
||||||
mut tmp2 := ''
|
mut tmp2 := ''
|
||||||
cur_line := g.go_before_stmt(0)
|
cur_line := g.go_before_stmt(0)
|
||||||
|
@ -1218,7 +1219,6 @@ fn (mut g Gen) fn_call(node ast.CallExpr) {
|
||||||
// its name was already used to generate the function call
|
// its name was already used to generate the function call
|
||||||
g.is_js_call = true
|
g.is_js_call = true
|
||||||
g.call_args(node)
|
g.call_args(node)
|
||||||
g.is_js_call = false
|
|
||||||
g.writeln(');')
|
g.writeln(');')
|
||||||
tmp2 = g.new_tmp_var()
|
tmp2 = g.new_tmp_var()
|
||||||
g.writeln('Option_$typ $tmp2 = $fn_name ($json_obj);')
|
g.writeln('Option_$typ $tmp2 = $fn_name ($json_obj);')
|
||||||
|
@ -1383,7 +1383,7 @@ fn (mut g Gen) fn_call(node ast.CallExpr) {
|
||||||
}
|
}
|
||||||
mut tmp_cnt_save := -1
|
mut tmp_cnt_save := -1
|
||||||
g.write('(')
|
g.write('(')
|
||||||
if g.is_json_fn {
|
if is_json_fn {
|
||||||
g.write(json_obj)
|
g.write(json_obj)
|
||||||
} else {
|
} else {
|
||||||
if node.is_keep_alive
|
if node.is_keep_alive
|
||||||
|
@ -1546,6 +1546,7 @@ fn (mut g Gen) call_args(node ast.CallExpr) {
|
||||||
if node.args.len < 1 {
|
if node.args.len < 1 {
|
||||||
g.error('node should have at least 1 arg', node.pos)
|
g.error('node should have at least 1 arg', node.pos)
|
||||||
}
|
}
|
||||||
|
g.is_js_call = false
|
||||||
node.args[1..]
|
node.args[1..]
|
||||||
} else {
|
} else {
|
||||||
node.args
|
node.args
|
||||||
|
|
Loading…
Reference in New Issue