lib/zenlish/inflect/literal_asis.rb in zenlish-0.2.05 vs lib/zenlish/inflect/literal_asis.rb in zenlish-0.2.06

- old
+ new

@@ -1,17 +1,20 @@ +# frozen_string_literal: true + require_relative 'atomic_o_expression' module Zenlish module Inflect class LiteralAsIs < AtomicOExpression attr_reader :text def initialize(aLiteralValue) + super() @text = aLiteralValue end def generate(_headings, _lexeme, _values) text end end # class end # module -end # module \ No newline at end of file +end # module