Sha256: 53388d59c7a8c6dc31a4d35370b915cfd23d0336645c8ca299fa88441fdb2f79

Contents?: true

Size: 519 Bytes

Versions: 16

Compression:

Stored size: 519 Bytes

Contents

module Regexp::Expression
  # abstract class
  class SequenceOperation < Regexp::Expression::Subexpression
    alias :sequences :expressions
    alias :operands :expressions
    alias :operator :text

    def starts_at
      expressions.first.starts_at
    end
    alias :ts :starts_at

    def <<(exp)
      expressions.last << exp
    end

    def add_sequence(active_opts = {})
      self.class::OPERAND.add_to(self, {}, active_opts)
    end

    def parts
      intersperse(expressions, text.dup)
    end
  end
end

Version data entries

16 entries across 16 versions & 6 rubygems

Version Path
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/regexp_parser-2.6.1/lib/regexp_parser/expression/sequence_operation.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/regexp_parser-2.6.1/lib/regexp_parser/expression/sequence_operation.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/regexp_parser-2.6.1/lib/regexp_parser/expression/sequence_operation.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/regexp_parser-2.5.0/lib/regexp_parser/expression/sequence_operation.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/regexp_parser-2.5.0/lib/regexp_parser/expression/sequence_operation.rb
call_your_name-0.1.0 vendor/bundle/ruby/3.1.0/gems/regexp_parser-2.7.0/lib/regexp_parser/expression/sequence_operation.rb
zilla-0.2.0 vendor/bundle/ruby/3.2.0/gems/regexp_parser-2.7.0/lib/regexp_parser/expression/sequence_operation.rb
regexp_parser-2.7.0 lib/regexp_parser/expression/sequence_operation.rb
regexp_parser-2.6.2 lib/regexp_parser/expression/sequence_operation.rb
tdiary-5.2.4 vendor/bundle/ruby/3.1.0/gems/regexp_parser-2.5.0/lib/regexp_parser/expression/sequence_operation.rb
regexp_parser-2.6.1 lib/regexp_parser/expression/sequence_operation.rb
regexp_parser-2.6.0 lib/regexp_parser/expression/sequence_operation.rb
tdiary-5.2.3 vendor/bundle/ruby/3.1.0/gems/regexp_parser-2.5.0/lib/regexp_parser/expression/sequence_operation.rb
tdiary-5.2.2 vendor/bundle/ruby/3.1.0/gems/regexp_parser-2.5.0/lib/regexp_parser/expression/sequence_operation.rb
regexp_parser-2.5.0 lib/regexp_parser/expression/sequence_operation.rb
regexp_parser-2.4.0 lib/regexp_parser/expression/sequence_operation.rb