refactor: rename DTree to DValue
This commit is contained in:
+7
-7
@@ -22,7 +22,7 @@ void compiler_invoke_cli(Request* context, String file_name);
|
||||
void compiler_invoke_serve_http(Request* context, String file_name, String handler_name = "");
|
||||
SharedUnit* compiler_load_shared_unit(Request* context, String file_name, String current_path = "", bool opt_so_optional = false);
|
||||
String compiler_error_page_unit(Request* context, String config_key);
|
||||
bool compiler_render_error_page(Request* context, String config_key, s32 status_code, String status_reason, DTree error_info);
|
||||
bool compiler_render_error_page(Request* context, String config_key, s32 status_code, String status_reason, DValue error_info);
|
||||
bool compiler_unit_compile_pending(Request* context, String file_name);
|
||||
String compiler_site_directory(Request* context);
|
||||
StringList compiler_scan_site_units(Request* context);
|
||||
@@ -31,21 +31,21 @@ void compiler_set_known_units(Request* context, StringList files);
|
||||
void compiler_track_known_unit(Request* context, String file_name);
|
||||
void compiler_untrack_known_unit(Request* context, String file_name);
|
||||
bool compiler_unit_needs_recompile(Request* context, String file_name, bool* source_missing = 0);
|
||||
DTree unit_info(String path = "");
|
||||
DValue unit_info(String path = "");
|
||||
StringList units_list();
|
||||
bool unit_compile(String path = "");
|
||||
|
||||
SharedUnit* unit_load(String file_name);
|
||||
void unit_render(String file_name);
|
||||
void unit_render(String file_name, Request& context);
|
||||
DTree* unit_call(String file_name, String function_name, DTree* call_param = 0);
|
||||
DValue* unit_call(String file_name, String function_name, DValue* call_param = 0);
|
||||
String component_resolve(String name);
|
||||
bool component_exists(String name);
|
||||
void component_render(String name);
|
||||
void component_render(String name, Request& context);
|
||||
void component_render(String name, DTree props);
|
||||
void component_render(String name, DTree props, Request& context);
|
||||
void component_render(String name, DValue props);
|
||||
void component_render(String name, DValue props, Request& context);
|
||||
String component(String name);
|
||||
String component(String name, Request& context);
|
||||
String component(String name, DTree props);
|
||||
String component(String name, DTree props, Request& context);
|
||||
String component(String name, DValue props);
|
||||
String component(String name, DValue props, Request& context);
|
||||
|
||||
Reference in New Issue
Block a user