class Lexr::MatchData

Attributes

characters_matched[R]
token[R]

Public Class Methods

new(characters_matched, token) click to toggle source
# File libs/lexer.rb, line 335
      def initialize(characters_matched, token)
        @characters_matched = characters_matched
        @token = token
end