Handbook
Glossary
xml>property ( xml -- property )
Vocabulary
gobject-introspection
.
loader
Inputs
xml
an
object
Outputs
property
an
object
Definition
USING:
accessors
combinators
gobject-introspection.repository
kernel
xml.data
;
IN:
gobject-introspection.loader
:
xml>property
( xml -- property )
[
property
new
]
dip
{
[
"name"
attr
>>name
]
[
"writable"
attr
"1"
=
>>writable?
]
[
"readable"
attr
"0"
=
not
>>readable?
]
[
"construct"
attr
"1"
=
>>construct?
]
[
"construct-only"
attr
"1"
=
>>construct-only?
]
[
child-type-tag
xml>type
>>type
]
}
cleave
;