efl/src/tests/eolian/data/complex_type.eo

23 lines
437 B
Plaintext

struct @free(efl_del) @extern Eo;
class Complex_Type {
methods {
@property a {
set {
return: list<array<ptr(Eo) @owned> > @owned;
}
get {
}
values {
value: list<string> @owned;
}
}
foo {
params {
buf: mstring @owned;
}
return: list<stringshare> @owned; [[comment for method return]]
}
}
}