Class Parslet::Atoms::Sequence
In: lib/parslet/atoms/visitor.rb
lib/parslet/atoms/sequence.rb
Parent: Object

A sequence of parslets, matched from left to right. Denoted by ’>>’

Example:

  str('a') >> str('b')  # matches 'a', then 'b'

Methods

>>   accept   new   to_s_inner   try  

Attributes

parslets  [R] 

Public Class methods

Public Instance methods

Call back visitors visit_sequence method. See parslet/export for an example.

[Validate]