class ParserCombinator::StandardFailStatus

Attributes

message[R]
rest[R]

Public Class Methods

new(message, rest) click to toggle source
# File lib/parser_combinator.rb, line 22
def initialize(message, rest)
  @message, @rest = message, rest
end