Class: RParsec::NotParser

Inherits:
LookAheadSensitiveParser show all
Defined in:
lib/rparsec/not_parser.rb,
lib/rparsec/look_ahead_sensitive_parser.rb

Overview

Define here to avoid circular loadings.

Constant Summary

Constants inherited from Parser

Parser::MyMonad

Constants included from Functors

Functors::And, Functors::At, Functors::BitAnd, Functors::Call, Functors::Compare, Functors::Dec, Functors::Div, Functors::Eq, Functors::Feed, Functors::Fst, Functors::Ge, Functors::Gt, Functors::Id, Functors::Idn, Functors::Inc, Functors::Le, Functors::Lt, Functors::Match, Functors::Minus, Functors::Mod, Functors::Mul, Functors::Ne, Functors::Neg, Functors::Not, Functors::Or, Functors::Plus, Functors::Power, Functors::Snd, Functors::Succ, Functors::To_a, Functors::To_f, Functors::To_i, Functors::To_s, Functors::To_sym, Functors::Union, Functors::Xor

Instance Attribute Summary

Attributes inherited from Parser

#name

Attributes included from Monad

#this

Instance Method Summary collapse

Methods inherited from LookAheadSensitiveParser

#lookahead, #visible

Methods inherited from Parser

#>>, #atomize, #bindn, #catchp, #delimited, #delimited1, #expect, #followed, #fragment, #infixl, #infixn, #infixr, #lexeme, #lookahead, #many, #many_, #map, #mapn, #nested, #optional, #parse, #peek, #postfix, #prefix, #repeat, #repeat_, #separated, #separated1, #seq, #some, #some_, #to_s, #token, #|

Methods included from Monad

#bind, #initMonad, #map, #plus, #seq, #value

Methods included from Functors

#compose, #const, #curry, #flip, make_curry, make_reverse_curry, #nth, #power, #repeat, #reverse_curry, #reverse_uncurry, #uncurry

Constructor Details

#initialize(parser, msg, la = 1) ⇒ NotParser

:nodoc:



24
25
26
27
28
29
# File 'lib/rparsec/look_ahead_sensitive_parser.rb', line 24

def initialize(parser, msg, la = 1)
  super(la)
  @parser = parser
  @msg = msg
  @name = "~#{parser.name}"
end

Instance Method Details

#_parse(ctxt) ⇒ Object



11
12
13
14
15
16
17
18
19
# File 'lib/rparsec/not_parser.rb', line 11

def _parse ctxt
  ind = ctxt.index
  if @parser._parse ctxt
    ctxt.index = ind
    return ctxt.expecting(@msg)
  end
  return ctxt.retn(nil) if visible(ctxt, ind)
  return false
end

#notObject



23
24
25
# File 'lib/rparsec/not_parser.rb', line 23

def not()
  @parser
end

#withLookahead(n) ⇒ Object



20
21
22
# File 'lib/rparsec/not_parser.rb', line 20

def withLookahead(n)
  NotParser.new(@parser, @msg, n)
end