class Mlc::Abstract::Raw

Public Class Methods

new(text) click to toggle source
# File lib/mlc/abstract/raw.rb, line 4
def initialize(text)
  @text = text
end

Public Instance Methods

to_lua(indent, options, state) click to toggle source
# File lib/mlc/abstract/raw.rb, line 8
def to_lua(indent, options, state)
  @text
end