Skip to content

Commit

Permalink
fix: resolve opts in the schema type api (#935)
Browse files Browse the repository at this point in the history
Signed-off-by: peefy <[email protected]>
  • Loading branch information
Peefy authored Dec 1, 2023
1 parent 6137714 commit b437ae5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion kclvm/api/src/service/service_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,10 @@ impl KclvmServiceImpl {
CompilationOptions {
k_files: exec_args.clone().k_filename_list,
loader_opts: Some(exec_args.get_load_program_options()),
resolve_opts: Options::default(),
resolve_opts: Options {
resolve_val: true,
..Default::default()
},
get_schema_opts: GetSchemaOption::default(),
},
)? {
Expand Down

0 comments on commit b437ae5

Please sign in to comment.