Some of the SB API method description docstrings for swing are annotated
as `%feature("autodoc")` - but `"autodoc"` annotations are only to
substitute a string showing the arguments and return variables - either
in a single line, or in multiple lines. SBMemoryRegionInfo used
`"autodoc"` correctly describing the parameters and return type, but
then it added a description too which is not correct either.
Change all of these that are adding a method description to use
`%feature("docstring")` instead. There were a half dozen instances where
`"autodoc"` was correctly being used and we have overriden the parameter
and return types with a more readable version.
17 lines
611 B
OpenEdge ABL
17 lines
611 B
OpenEdge ABL
%feature("docstring",
|
|
"Represents a libdispatch queue in the process."
|
|
) lldb::SBQueue;
|
|
|
|
%feature("docstring", "
|
|
Returns an lldb::queue_id_t type unique identifier number for this
|
|
queue that will not be used by any other queue during this process'
|
|
execution. These ID numbers often start at 1 with the first
|
|
system-created queues and increment from there."
|
|
) lldb::SBQueue::GetQueueID;
|
|
|
|
%feature("docstring", "
|
|
Returns an lldb::QueueKind enumerated value (e.g. eQueueKindUnknown,
|
|
eQueueKindSerial, eQueueKindConcurrent) describing the type of this
|
|
queue."
|
|
) lldb::SBQueue::GetKind;
|