class FFI::Clang::TParamCommandComment
Public Instance Methods
depth()
click to toggle source
# File lib/ffi/clang/comment.rb, line 240 def depth Lib.tparam_command_comment_get_depth(@comment) end
index(depth = 0)
click to toggle source
# File lib/ffi/clang/comment.rb, line 244 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 232 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 227 def text self.child.text end
Also aliased as: comment
valid_position?()
click to toggle source
# File lib/ffi/clang/comment.rb, line 236 def valid_position? Lib.tparam_command_comment_is_param_position_valid(@comment) != 0 end