Class: FFI::Generator::Function::Argument
- Defined in:
- lib/generator/function.rb
Constant Summary
Constants inherited from Type
Type::ArrayRE, Type::ArraySizeRE
Instance Attribute Summary
Attributes inherited from Type
Attributes inherited from Node
Instance Method Summary collapse
Methods inherited from Type
Methods inherited from Node
Constructor Details
This class inherits a constructor from FFI::Generator::Type
Instance Method Details
#to_s ⇒ Object
5 6 7 8 9 10 11 12 13 14 |
# File 'lib/generator/function.rb', line 5 def to_s case get_attr('type') when 'void' nil when 'v(...)' ':varargs' else super end end |