Class: Duby::AST::OptionalArgument
- Defined in:
- lib/duby/ast/method.rb
Instance Attribute Summary
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, &block) ⇒ OptionalArgument
constructor
A new instance of OptionalArgument.
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, &block) ⇒ OptionalArgument
Returns a new instance of OptionalArgument.
63 64 65 66 |
# File 'lib/duby/ast/method.rb', line 63 def initialize(parent, line_number, name, &block) super(parent, line_number, &block) @name = name end |
Instance Method Details
#infer(typer) ⇒ Object
68 69 70 71 72 73 74 75 76 77 78 |
# File 'lib/duby/ast/method.rb', line 68 def infer(typer) resolve_if(typer) do scope.static_scope << name # if not already typed, check parent of parent (MethodDefinition) # for signature info method_def = parent.parent signature = method_def.signature signature[name.intern] = child.infer(typer) end end |