class FFI::Clang::BlockCommandComment

Public Instance Methods

args() click to toggle source
# File lib/ffi/clang/comment.rb, line 192
def args
        num_args.times.map { |i|
                Lib.extract_string Lib.block_command_comment_get_arg_text(@comment, i)
        }
end
comment()
Alias for: text
name() click to toggle source
# File lib/ffi/clang/comment.rb, line 175
def name
        Lib.extract_string Lib.block_command_comment_get_command_name(@comment)
end
num_args() click to toggle source
# File lib/ffi/clang/comment.rb, line 188
def num_args
        Lib.block_command_comment_get_num_args(@comment)
end
paragraph() click to toggle source
# File lib/ffi/clang/comment.rb, line 179
def paragraph
        Comment.build_from Lib.block_command_comment_get_paragraph(@comment)
end
text() click to toggle source
# File lib/ffi/clang/comment.rb, line 183
def text
        self.paragraph.text
end
Also aliased as: comment