class AdLint::Cc1::ParameterTypeList
Attributes
parameters[R]
Public Class Methods
new(params, have_va_list)
click to toggle source
Calls superclass method
AdLint::Cc1::SyntaxNode::new
# File lib/adlint/cc1/syntax.rb, line 3333 def initialize(params, have_va_list) super() @parameters = params @have_va_list = have_va_list end
Public Instance Methods
have_va_list?()
click to toggle source
# File lib/adlint/cc1/syntax.rb, line 3345 def have_va_list? @have_va_list end
inspect(indent = 0)
click to toggle source
# File lib/adlint/cc1/syntax.rb, line 3349 def inspect(indent = 0) " " * indent + short_class_name end
location()
click to toggle source
# File lib/adlint/cc1/syntax.rb, line 3341 def location head_location end