diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2020-12-03 12:51:17 +0100 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2020-12-04 23:21:33 +0100 |
commit | 1167ab96e9be2a86b1315693b843820eef978685 (patch) | |
tree | c2702554e7696e0cf6344a61b37a332c82f27229 /platform/javascript/js/libs/library_godot_eval.js | |
parent | ea7dd1be36abc528f39e7c42725267d01774983b (diff) | |
download | redot-engine-1167ab96e9be2a86b1315693b843820eef978685.tar.gz |
[HTML5] Add function signatures to JS libraries.
Diffstat (limited to 'platform/javascript/js/libs/library_godot_eval.js')
-rw-r--r-- | platform/javascript/js/libs/library_godot_eval.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/platform/javascript/js/libs/library_godot_eval.js b/platform/javascript/js/libs/library_godot_eval.js index 33ff231726..1a2440dd24 100644 --- a/platform/javascript/js/libs/library_godot_eval.js +++ b/platform/javascript/js/libs/library_godot_eval.js @@ -30,6 +30,7 @@ const GodotEval = { godot_js_eval__deps: ['$GodotRuntime'], + godot_js_eval__sig: 'iiiiiii', godot_js_eval: function (p_js, p_use_global_ctx, p_union_ptr, p_byte_arr, p_byte_arr_write, p_callback) { const js_code = GodotRuntime.parseString(p_js); let eval_ret = null; |