bhl static struct methods
This commit is contained in:
parent
727de643ee
commit
cd57c03761
|
@ -642,7 +642,11 @@ Script_{{o.name|norm_name}}.Method_{{m.name}}.ReturnValue(frm, stack
|
|||
|
||||
{% for m in o.getfuncs %}
|
||||
{% if has_token(m, 'bhl_native_prefix') %}
|
||||
{{ _self.reg_func_native(m, 'cl', '__self.', o) }}
|
||||
{% if has_token(m, 'bhl_static') %}
|
||||
{{ _self.reg_func_native(m, 'cl', '', o) }}
|
||||
{% else %}
|
||||
{{ _self.reg_func_native(m, 'cl', '__self.', o) }}
|
||||
{% endif %}
|
||||
{% else %}
|
||||
{{ _self.method_partial(o, m, 'cl') }}
|
||||
{% endif %}
|
||||
|
|
Loading…
Reference in New Issue