Adding initial support for @cs_implements:IFoo,IBar
This commit is contained in:
parent
9499eae42b
commit
3f22b2fc55
|
@ -31,6 +31,7 @@ function supported_tokens()
|
|||
'diffable',
|
||||
'table_pkey',
|
||||
'bhl_bind',
|
||||
'cs_implements',
|
||||
'cs_attributes',
|
||||
'cs_accessor_interface',
|
||||
'cs_propget_interface',
|
||||
|
|
|
@ -204,6 +204,10 @@ ResetFieldMask();
|
|||
: {{o.parent ? o.parent.name : 'BaseMetaStruct'}}
|
||||
{{- has_token(o, 'cloneable') and not o.parent ? ', IMetaCloneable' -}}
|
||||
{%- endif -%}
|
||||
{%- for ifs in token(o, "cs_implements", "")|split(',') -%}
|
||||
, {{ifs}}
|
||||
{%- endfor -%}
|
||||
|
||||
{%- for ai in get_accessor_interfaces(o) -%}
|
||||
, {{ai.interfacename}}
|
||||
{%- endfor -%}
|
||||
|
|
Loading…
Reference in New Issue