SeparatedRepeatingParser<R, S> class 
 
    
  A parser that consumes the delegate between min and max times
separated by the separator parser.
 
    
    
  
    
  
    Properties
    
        - 
  children
  → List<Parser>
  
- 
  Returns a list of directly referenced parsers.
  no setteroverride 
- 
  delegate
  ↔ Parser<R>
  
- 
  The parser this parser delegates to.
  getter/setter pairinherited 
- 
  hashCode
  → int
  
- 
  The hash code for this object.
  no setterinherited 
- 
  max
  → int
  
- 
  The maximum amount of repetitions, or unbounded.
  finalinherited 
- 
  min
  → int
  
- 
  The minimum amount of repetitions.
  finalinherited 
- 
  runtimeType
  → Type
  
- 
  A representation of the runtime type of the object.
  no setterinherited 
- 
  separator
  ↔ Parser<S>
  
- 
  Parser consuming input between the repeated elements.
  getter/setter pair 
 
    
  
    Methods
    
        - 
  copy()
    → SeparatedRepeatingParser<R, S>
  
  
- 
  Returns a shallow copy of the receiver.
  override 
- 
  fastParseOn(String buffer, int position)
    → int
  
  
- 
  Primitive method doing the actual parsing.
  override 
- 
  hasEqualChildren(covariant Parser other, Set<Parser> seen)
    → bool
  
  
- 
  Compare the children of two parsers.
  inherited 
- 
  hasEqualProperties(covariant RepeatingParser<R, SeparatedList<R, S>> other)
    → bool
  
  
- 
  Compare the properties of two parsers.
  inherited 
- 
  isEqualTo(Parser other, [Set<Parser>? seen])
    → bool
  
  
- 
  Recursively tests for structural equality of two parsers.
  inherited 
- 
  noSuchMethod(Invocation invocation)
    → dynamic
  
  
- 
  Invoked when a nonexistent method or property is accessed.
  inherited 
- 
  parse(String input, {int start = 0})
    → Result<SeparatedList<R, S>>
  
  
- 
  Returns the parse result of the input.inherited 
- 
  parseOn(Context context)
    → Result<SeparatedList<R, S>>
  
  
- 
  Primitive method doing the actual parsing.
  override 
- 
  replace(Parser source, Parser target)
    → void
  
  
- 
  Changes the receiver by replacing sourcewithtarget. Does nothing
ifsourcedoes not exist in Parser.children.override 
- 
  toString()
    → String
  
  
- 
  A string representation of this object.
  inherited