Class: Regexp::Syntax::V1_8_6
- Defined in:
 - lib/regexp_parser/syntax/versions/1.8.6.rb
 
Direct Known Subclasses
Constant Summary
Constants included from Token
Token::All, Token::Map, Token::Types
Instance Method Summary collapse
- 
  
    
      #initialize  ⇒ V1_8_6 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of V1_8_6.
 
Methods inherited from Base
#excludes, #features, #implementations, #implements, #implements!, #implements?, inspect, #normalize, #normalize_backref, #normalize_group
Constructor Details
#initialize ⇒ V1_8_6
Returns a new instance of V1_8_6.
      3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19  | 
    
      # File 'lib/regexp_parser/syntax/versions/1.8.6.rb', line 3 def initialize super implements :anchor, Anchor::All implements :assertion, Assertion::Lookahead implements :backref, Backreference::V1_8_6 implements :posixclass, PosixClass::Standard implements :group, Group::V1_8_6 implements :meta, Meta::Extended implements :set, CharacterSet::All implements :type, CharacterType::Extended implements :escape, Escape::Basic + Escape::ASCII + Escape::Meta + Escape::Control implements :quantifier, Quantifier::Greedy + Quantifier::Reluctant + Quantifier::Interval + Quantifier::IntervalReluctant end  |