Class: LexerKit::DFA::RegexAST::CharClass
- Inherits:
-
Data
- Object
- Data
- LexerKit::DFA::RegexAST::CharClass
- Defined in:
- lib/lexer_kit/dfa/regex_ast.rb
Overview
Character class (e.g., [a-z], [^0-9]) ranges: [[from, to], …]
Instance Attribute Summary collapse
-
#meta ⇒ Object
readonly
Returns the value of attribute meta.
-
#negated ⇒ Object
readonly
Returns the value of attribute negated.
-
#ranges ⇒ Object
readonly
Returns the value of attribute ranges.
Instance Attribute Details
#meta ⇒ Object (readonly)
Returns the value of attribute meta
24 25 26 |
# File 'lib/lexer_kit/dfa/regex_ast.rb', line 24 def @meta end |
#negated ⇒ Object (readonly)
Returns the value of attribute negated
24 25 26 |
# File 'lib/lexer_kit/dfa/regex_ast.rb', line 24 def negated @negated end |
#ranges ⇒ Object (readonly)
Returns the value of attribute ranges
24 25 26 |
# File 'lib/lexer_kit/dfa/regex_ast.rb', line 24 def ranges @ranges end |