Class: Duby::AST::BlockArgument
- Defined in:
- lib/duby/ast/method.rb
Instance Attribute Summary collapse
-
#optional ⇒ Object
(also: #optional?)
Returns the value of attribute optional.
Attributes included from Named
Attributes included from Typed
Attributes inherited from Node
#children, #inferred_type, #newline, #parent, #position
Instance Method Summary collapse
- #infer(typer) ⇒ Object
-
#initialize(parent, line_number, name) ⇒ BlockArgument
constructor
A new instance of BlockArgument.
Methods included from Scoped
Methods included from Named
Methods inherited from Argument
Methods inherited from Node
#<<, ===, #[], #_set_parent, child, child_name, #each, #empty?, #expr?, #initialize_copy, #insert, #inspect, #line_number, #log, #precompile, #resolve_if, #resolved!, #resolved?, #simple_name, #temp, #to_s
Constructor Details
#initialize(parent, line_number, name) ⇒ BlockArgument
Returns a new instance of BlockArgument.
103 104 105 106 107 |
# File 'lib/duby/ast/method.rb', line 103 def initialize(parent, line_number, name) super(parent, line_number) @name = name end |
Instance Attribute Details
#optional ⇒ Object Also known as: optional?
Returns the value of attribute optional.
100 101 102 |
# File 'lib/duby/ast/method.rb', line 100 def optional @optional end |
Instance Method Details
#infer(typer) ⇒ Object
109 110 111 112 |
# File 'lib/duby/ast/method.rb', line 109 def infer(typer) scope.static_scope << name super end |