Class: Duby::AST::Boolean
- Includes:
- Literal
- Defined in:
- lib/duby/compiler.rb,
lib/duby/ast/literal.rb
Instance Attribute Summary
Attributes included from Literal
Attributes included from Typed
Attributes inherited from Node
#children, #inferred_type, #newline, #parent, #position
Instance Method Summary collapse
- #compile(compiler, expression) ⇒ Object
- #infer(typer) ⇒ Object
-
#initialize(parent, line_number, literal) ⇒ Boolean
constructor
A new instance of Boolean.
Methods included from Literal
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, literal) ⇒ Boolean
Returns a new instance of Boolean.
123 124 125 126 |
# File 'lib/duby/ast/literal.rb', line 123 def initialize(parent, line_number, literal) super(parent, line_number) @literal = literal end |
Instance Method Details
#compile(compiler, expression) ⇒ Object
54 55 56 57 58 59 |
# File 'lib/duby/compiler.rb', line 54 def compile(compiler, expression) if expression compiler.line(line_number) compiler.boolean(literal) end end |
#infer(typer) ⇒ Object
128 129 130 131 132 |
# File 'lib/duby/ast/literal.rb', line 128 def infer(typer) return @inferred_type if resolved? resolved! @inferred_type ||= typer.boolean_type end |