class FFI::Clang::InlineCommandComment

Public Instance Methods

args() click to toggle source
# File lib/ffi/clang/comment.rb, line 163
def args
        num_args.times.map { |i|
                Lib.extract_string Lib.inline_command_comment_get_arg_text(@comment, i)
        }
end
name() click to toggle source
# File lib/ffi/clang/comment.rb, line 151
def name
        Lib.extract_string Lib.inline_command_comment_get_command_name(@comment)
end
num_args() click to toggle source
# File lib/ffi/clang/comment.rb, line 159
def num_args
        Lib.inline_command_comment_get_num_args(@comment)
end
render_kind() click to toggle source
# File lib/ffi/clang/comment.rb, line 155
def render_kind
        Lib.inline_command_comment_get_render_kind(@comment)
end
text() click to toggle source
# File lib/ffi/clang/comment.rb, line 169
def text
        args.join
end