2021-02-01 20:37:39 +01:00
|
|
|
module ./builtin
|
2018-02-11 10:35:54 +01:00
|
|
|
object q_empty
|
2018-12-13 13:37:05 +01:00
|
|
|
enum QType
|
2018-02-11 10:35:54 +01:00
|
|
|
prefix QTYPE
|
2018-12-13 13:37:05 +01:00
|
|
|
member none
|
|
|
|
member qnull
|
|
|
|
member qnum
|
|
|
|
member qstring
|
|
|
|
member qdict
|
|
|
|
member qlist
|
|
|
|
member qbool
|
2018-02-11 10:35:55 +01:00
|
|
|
module doc-good.json
|
2018-12-13 13:37:05 +01:00
|
|
|
enum Enum
|
|
|
|
member one
|
2018-12-13 13:37:20 +01:00
|
|
|
if ['defined(IFONE)']
|
2018-12-13 13:37:05 +01:00
|
|
|
member two
|
2018-07-03 17:56:46 +02:00
|
|
|
if ['defined(IFCOND)']
|
2020-03-17 12:54:37 +01:00
|
|
|
feature enum-feat
|
2017-03-20 14:11:54 +01:00
|
|
|
object Base
|
|
|
|
member base1: Enum optional=False
|
2018-02-11 10:35:54 +01:00
|
|
|
object Variant1
|
|
|
|
member var1: str optional=False
|
2018-12-13 13:37:21 +01:00
|
|
|
if ['defined(IFSTR)']
|
2020-03-17 12:54:45 +01:00
|
|
|
feature member-feat
|
2019-10-18 10:14:53 +02:00
|
|
|
feature variant1-feat
|
2018-02-11 10:35:54 +01:00
|
|
|
object Variant2
|
2017-03-20 14:11:54 +01:00
|
|
|
object Object
|
|
|
|
base Base
|
|
|
|
tag base1
|
|
|
|
case one: Variant1
|
|
|
|
case two: Variant2
|
2018-12-13 13:37:22 +01:00
|
|
|
if ['IFTWO']
|
2020-03-17 12:54:37 +01:00
|
|
|
feature union-feat1
|
2018-02-11 10:35:54 +01:00
|
|
|
object q_obj_Variant1-wrapper
|
|
|
|
member data: Variant1 optional=False
|
|
|
|
object q_obj_Variant2-wrapper
|
|
|
|
member data: Variant2 optional=False
|
2018-12-13 13:37:05 +01:00
|
|
|
enum SugaredUnionKind
|
|
|
|
member one
|
|
|
|
member two
|
2018-12-13 13:37:22 +01:00
|
|
|
if ['IFTWO']
|
2017-03-20 14:11:54 +01:00
|
|
|
object SugaredUnion
|
|
|
|
member type: SugaredUnionKind optional=False
|
|
|
|
tag type
|
|
|
|
case one: q_obj_Variant1-wrapper
|
|
|
|
case two: q_obj_Variant2-wrapper
|
2018-12-13 13:37:22 +01:00
|
|
|
if ['IFTWO']
|
2020-03-17 12:54:37 +01:00
|
|
|
feature union-feat2
|
2019-10-24 13:02:21 +02:00
|
|
|
alternate Alternate
|
|
|
|
tag type
|
|
|
|
case i: int
|
|
|
|
case b: bool
|
2020-03-17 12:54:37 +01:00
|
|
|
feature alt-feat
|
2017-03-20 14:11:54 +01:00
|
|
|
object q_obj_cmd-arg
|
|
|
|
member arg1: int optional=False
|
|
|
|
member arg2: str optional=True
|
|
|
|
member arg3: bool optional=False
|
2018-02-11 10:35:54 +01:00
|
|
|
command cmd q_obj_cmd-arg -> Object
|
2019-10-18 10:14:50 +02:00
|
|
|
gen=True success_response=True boxed=False oob=False preconfig=False
|
2019-10-18 10:14:53 +02:00
|
|
|
feature cmd-feat1
|
|
|
|
feature cmd-feat2
|
2018-02-11 10:35:54 +01:00
|
|
|
command cmd-boxed Object -> None
|
2019-10-18 10:14:50 +02:00
|
|
|
gen=True success_response=True boxed=True oob=False preconfig=False
|
2019-10-18 10:14:53 +02:00
|
|
|
feature cmd-feat1
|
|
|
|
feature cmd-feat2
|
2019-10-24 13:02:20 +02:00
|
|
|
event EVT-BOXED Object
|
|
|
|
boxed=True
|
2020-03-17 12:54:37 +01:00
|
|
|
feature feat3
|
2017-03-20 14:11:54 +01:00
|
|
|
doc freeform
|
|
|
|
body=
|
|
|
|
= Section
|
2020-03-20 10:18:05 +01:00
|
|
|
doc freeform
|
|
|
|
body=
|
2017-03-20 14:11:54 +01:00
|
|
|
== Subsection
|
|
|
|
|
2020-09-25 18:23:07 +02:00
|
|
|
*with emphasis*
|
2017-03-20 14:11:54 +01:00
|
|
|
@var {in braces}
|
2020-09-25 18:22:58 +02:00
|
|
|
|
2017-03-20 14:11:54 +01:00
|
|
|
* List item one
|
2020-09-25 18:22:58 +02:00
|
|
|
* Two, multiple
|
2020-09-25 18:22:59 +02:00
|
|
|
lines
|
2017-03-20 14:11:54 +01:00
|
|
|
|
2020-09-25 18:22:58 +02:00
|
|
|
* Three
|
2020-09-25 18:22:59 +02:00
|
|
|
Still in list
|
2017-03-20 14:11:54 +01:00
|
|
|
|
|
|
|
Not in list
|
2020-09-25 18:22:58 +02:00
|
|
|
|
2017-03-20 14:11:54 +01:00
|
|
|
- Second list
|
2020-09-25 18:22:59 +02:00
|
|
|
Note: still in list
|
2017-03-20 14:11:54 +01:00
|
|
|
|
|
|
|
Note: not in list
|
2020-09-25 18:22:58 +02:00
|
|
|
|
2017-03-20 14:11:54 +01:00
|
|
|
1. Third list
|
2020-09-25 18:22:59 +02:00
|
|
|
is numbered
|
2017-03-20 14:11:54 +01:00
|
|
|
|
2020-09-25 18:22:58 +02:00
|
|
|
2. another item
|
2017-03-20 14:11:54 +01:00
|
|
|
|
|
|
|
Returns: the King
|
|
|
|
Since: the first age
|
|
|
|
Notes:
|
|
|
|
|
|
|
|
1. Lorem ipsum dolor sit amet
|
|
|
|
|
|
|
|
2. Ut enim ad minim veniam
|
|
|
|
|
|
|
|
Duis aute irure dolor
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
-> in
|
|
|
|
<- out
|
|
|
|
Examples:
|
|
|
|
- *verbatim*
|
|
|
|
- {braces}
|
|
|
|
doc symbol=Enum
|
|
|
|
body=
|
2017-10-02 16:13:35 +02:00
|
|
|
|
2017-03-20 14:11:54 +01:00
|
|
|
arg=one
|
|
|
|
The _one_ {and only}
|
|
|
|
arg=two
|
|
|
|
|
2020-03-17 12:54:37 +01:00
|
|
|
feature=enum-feat
|
|
|
|
Also _one_ {and only}
|
2017-10-02 16:13:37 +02:00
|
|
|
section=None
|
2017-03-20 14:11:54 +01:00
|
|
|
@two is undocumented
|
|
|
|
doc symbol=Base
|
|
|
|
body=
|
|
|
|
|
|
|
|
arg=base1
|
|
|
|
the first member
|
|
|
|
doc symbol=Variant1
|
|
|
|
body=
|
|
|
|
A paragraph
|
|
|
|
|
|
|
|
Another paragraph (but no @var: line)
|
|
|
|
arg=var1
|
|
|
|
|
2019-10-24 13:02:22 +02:00
|
|
|
feature=variant1-feat
|
|
|
|
a feature
|
2020-03-17 12:54:45 +01:00
|
|
|
feature=member-feat
|
|
|
|
a member feature
|
2017-03-20 14:11:54 +01:00
|
|
|
doc symbol=Variant2
|
|
|
|
body=
|
|
|
|
|
|
|
|
doc symbol=Object
|
|
|
|
body=
|
|
|
|
|
2020-03-17 12:54:37 +01:00
|
|
|
feature=union-feat1
|
|
|
|
a feature
|
2017-03-20 14:11:54 +01:00
|
|
|
doc symbol=SugaredUnion
|
|
|
|
body=
|
|
|
|
|
|
|
|
arg=type
|
|
|
|
|
2020-03-17 12:54:37 +01:00
|
|
|
feature=union-feat2
|
|
|
|
a feature
|
2019-10-24 13:02:21 +02:00
|
|
|
doc symbol=Alternate
|
|
|
|
body=
|
|
|
|
|
|
|
|
arg=i
|
|
|
|
an integer
|
2020-09-25 18:23:00 +02:00
|
|
|
@b is undocumented
|
2019-10-24 13:02:21 +02:00
|
|
|
arg=b
|
|
|
|
|
2020-03-17 12:54:37 +01:00
|
|
|
feature=alt-feat
|
|
|
|
a feature
|
2017-03-20 14:11:54 +01:00
|
|
|
doc freeform
|
|
|
|
body=
|
|
|
|
== Another subsection
|
|
|
|
doc symbol=cmd
|
|
|
|
body=
|
|
|
|
|
|
|
|
arg=arg1
|
|
|
|
the first argument
|
|
|
|
arg=arg2
|
|
|
|
the second
|
2020-09-25 18:23:00 +02:00
|
|
|
argument
|
2017-03-20 14:11:54 +01:00
|
|
|
arg=arg3
|
|
|
|
|
2019-10-24 13:02:22 +02:00
|
|
|
feature=cmd-feat1
|
|
|
|
a feature
|
|
|
|
feature=cmd-feat2
|
|
|
|
another feature
|
2017-03-20 14:11:54 +01:00
|
|
|
section=Note
|
|
|
|
@arg3 is undocumented
|
|
|
|
section=Returns
|
|
|
|
@Object
|
|
|
|
section=TODO
|
|
|
|
frobnicate
|
|
|
|
section=Notes
|
|
|
|
- Lorem ipsum dolor sit amet
|
|
|
|
- Ut enim ad minim veniam
|
|
|
|
|
|
|
|
Duis aute irure dolor
|
|
|
|
section=Example
|
|
|
|
-> in
|
|
|
|
<- out
|
|
|
|
section=Examples
|
|
|
|
- *verbatim*
|
|
|
|
- {braces}
|
|
|
|
section=Since
|
|
|
|
2.10
|
|
|
|
doc symbol=cmd-boxed
|
|
|
|
body=
|
|
|
|
If you're bored enough to read this, go see a video of boxed cats
|
2019-10-24 13:02:22 +02:00
|
|
|
feature=cmd-feat1
|
|
|
|
a feature
|
|
|
|
feature=cmd-feat2
|
|
|
|
another feature
|
2017-03-20 14:11:54 +01:00
|
|
|
section=Example
|
|
|
|
-> in
|
|
|
|
|
|
|
|
<- out
|
2019-10-24 13:02:20 +02:00
|
|
|
doc symbol=EVT-BOXED
|
|
|
|
body=
|
2019-10-24 13:02:24 +02:00
|
|
|
|
2020-03-17 12:54:37 +01:00
|
|
|
feature=feat3
|
|
|
|
a feature
|