class TracePreprocessor::Lexeme

Attributes

converter[RW]
name[RW]
priority[RW]
regexp[RW]
value_kind[RW]

Public Class Methods

new(name, options) click to toggle source
# File lib/trace_preprocessor/lexeme.rb, line 3
def initialize name, options
  @name = name
  @converter = {}      
  
  @regexp     = options[:regexp]
  @priority   = options[:priority]
  @value_kind = options[:value_kind] || :hash
end