bindings: fix missing @since tags & docs

summary_: Depends on D11264

Reviewers: zmike, segfaultxavi, woohyun

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D11265
This commit is contained in:
Marcel Hollerbach 2020-02-04 12:15:59 -03:00
parent 27a7924ec6
commit e52d871859
1 changed files with 6 additions and 3 deletions

View File

@ -19,7 +19,10 @@ struct Foo {
}
enum Bar {
[[Docs for enum Bar.]]
[[Docs for enum Bar.
@since 1.66
]]
blah = 0,
foo = 1, [[Docs for foo.]]
bar = 2 [[Docs for bar.]]
@ -31,9 +34,9 @@ type Alias: Bar; [[Docs for typedef.
See @Bar. @since 2.0
]]
const pants: int = 150; [[Docs for var.]]
const pants: int = 150; [[Docs for var. @since 1.66]]
struct Opaque; [[Opaque struct docs. See @Foo for another struct.]]
struct Opaque; [[Opaque struct docs. See @Foo for another struct. @since 1.66]]
class Docs {
[[Docs for class.