class FFI::Clang::TParamCommandComment

Public Instance Methods

comment()
Alias for: text
depth() click to toggle source
# File lib/ffi/clang/comment.rb, line 241
def depth
        Lib.tparam_command_comment_get_depth(@comment)
end
index(depth = 0) click to toggle source
# File lib/ffi/clang/comment.rb, line 245
def index(depth = 0)
        Lib.tparam_command_comment_get_index(@comment, depth)
end
name() click to toggle source
# File lib/ffi/clang/comment.rb, line 233
def name
        Lib.extract_string Lib.tparam_command_comment_get_param_name(@comment)
end
text() click to toggle source
# File lib/ffi/clang/comment.rb, line 228
def text
        self.child.text
end
Also aliased as: comment
valid_position?() click to toggle source
# File lib/ffi/clang/comment.rb, line 237
def valid_position?
        Lib.tparam_command_comment_is_param_position_valid(@comment) != 0
end