class MODL::Parser::TryParse

Class to hold the result of the tryParse method

Attributes

code_point[RW]
length[RW]

Public Class Methods

new(code, len) click to toggle source
# File lib/modl/parser/unicode_escape_replacer.rb, line 142
def initialize(code, len)
  @code_point = code
  @length = len
end