Class: Duby::AST::Regexp
- 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) ⇒ Regexp
constructor
A new instance of Regexp.
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) ⇒ Regexp
Returns a new instance of Regexp.
58 59 60 61 |
# File 'lib/duby/ast/literal.rb', line 58 def initialize(parent, line_number, literal) super(parent, line_number) @literal = literal end |
Instance Method Details
#compile(compiler, expression) ⇒ Object
15 16 17 18 19 20 |
# File 'lib/duby/compiler.rb', line 15 def compile(compiler, expression) if expression compiler.line(line_number) compiler.regexp(literal) end end |
#infer(typer) ⇒ Object
63 64 65 66 67 |
# File 'lib/duby/ast/literal.rb', line 63 def infer(typer) return @inferred_type if resolved? resolved! @inferred_type ||= typer.regexp_type end |