Class: Rubycc::Front::AST::VaCopy
- Inherits:
-
Data
- Object
- Data
- Rubycc::Front::AST::VaCopy
- Defined in:
- lib/rubycc/front/ast.rb
Overview
"__builtin_va_copy ( dest , src )": copies the traversal state of src
into dest so the two can be walked independently (7.16.1.2). Both are
va_list expressions; the generator lowers the copy to a whole-tag move
between their (decayed) addresses. The value is void, like va_end.
Instance Attribute Summary collapse
-
#dest ⇒ Object
readonly
Returns the value of attribute dest.
-
#src ⇒ Object
readonly
Returns the value of attribute src.
-
#token ⇒ Object
readonly
Returns the value of attribute token.
Instance Attribute Details
#dest ⇒ Object (readonly)
Returns the value of attribute dest
348 349 350 |
# File 'lib/rubycc/front/ast.rb', line 348 def dest @dest end |
#src ⇒ Object (readonly)
Returns the value of attribute src
348 349 350 |
# File 'lib/rubycc/front/ast.rb', line 348 def src @src end |
#token ⇒ Object (readonly)
Returns the value of attribute token
348 349 350 |
# File 'lib/rubycc/front/ast.rb', line 348 def token @token end |