Class: CodeTools::AST::RegexLiteral
- Defined in:
- lib/rubinius/ast/literals.rb
Instance Attribute Summary collapse
-
#options ⇒ Object
Returns the value of attribute options.
-
#source ⇒ Object
Returns the value of attribute source.
Attributes inherited from Node
Instance Method Summary collapse
- #bytecode(g) ⇒ Object
- #defined(g) ⇒ Object
-
#initialize(line, str, flags) ⇒ RegexLiteral
constructor
A new instance of RegexLiteral.
- #to_sexp ⇒ Object
Methods inherited from Node
#ascii_graph, #attributes, #children, match_arguments?, match_send?, #new_block_generator, #new_generator, #node_name, #or_bytecode, #pos, #set_child, transform, #transform, transform_comment, transform_kind, transform_kind=, transform_name, #value_defined, #visit, #walk
Constructor Details
#initialize(line, str, flags) ⇒ RegexLiteral
Returns a new instance of RegexLiteral.
356 357 358 359 360 |
# File 'lib/rubinius/ast/literals.rb', line 356 def initialize(line, str, flags) @line = line @source = str = flags end |
Instance Attribute Details
#options ⇒ Object
Returns the value of attribute options.
354 355 356 |
# File 'lib/rubinius/ast/literals.rb', line 354 def end |
#source ⇒ Object
Returns the value of attribute source.
354 355 356 |
# File 'lib/rubinius/ast/literals.rb', line 354 def source @source end |
Instance Method Details
#bytecode(g) ⇒ Object
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 |
# File 'lib/rubinius/ast/literals.rb', line 362 def bytecode(g) pos(g) # A regex literal should only be converted to a Regexp the first time it # is encountered. We push a literal nil here, and then overwrite the # literal value with the created Regexp if it is nil, i.e. the first time # only. Subsequent encounters will use the previously created Regexp idx = g.add_literal(nil) g.push_literal_at idx g.dup g.is_nil lbl = g.new_label g.gif lbl g.pop g.push_cpath_top g.find_const :Regexp g.push_literal @source g.push g.send :new, 2 g.set_literal idx lbl.set! end |
#defined(g) ⇒ Object
386 387 388 |
# File 'lib/rubinius/ast/literals.rb', line 386 def defined(g) g.push_literal "expression" end |
#to_sexp ⇒ Object
390 391 392 |
# File 'lib/rubinius/ast/literals.rb', line 390 def to_sexp [:regex, @source, ] end |