Class: Rubycc::Front::AST::VaArg
- Inherits:
-
Data
- Object
- Data
- Rubycc::Front::AST::VaArg
- Defined in:
- lib/rubycc/front/ast.rb
Overview
"__builtin_va_arg ( ap , type-name )": fetches the next variable argument
and advances ap. ap is the va_list expression and type is the
resolved Rubycc::Type the argument is read as (an int/long/unsigned/
pointer object type; a promotable or aggregate type is diagnosed). The
whole expression's value and type are that argument.
Instance Attribute Summary collapse
-
#ap ⇒ Object
readonly
Returns the value of attribute ap.
-
#token ⇒ Object
readonly
Returns the value of attribute token.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Attribute Details
#ap ⇒ Object (readonly)
Returns the value of attribute ap
337 338 339 |
# File 'lib/rubycc/front/ast.rb', line 337 def ap @ap end |
#token ⇒ Object (readonly)
Returns the value of attribute token
337 338 339 |
# File 'lib/rubycc/front/ast.rb', line 337 def token @token end |
#type ⇒ Object (readonly)
Returns the value of attribute type
337 338 339 |
# File 'lib/rubycc/front/ast.rb', line 337 def type @type end |