class Elm::CompileOutput

Compilation output including status

Attributes

output[R]
run_status[R]

Public Class Methods

new(output, run_status) click to toggle source
# File lib/elm/files.rb, line 19
def initialize(output, run_status)
  @output = output
  @run_status = run_status

  self
end

Public Instance Methods

stderr() click to toggle source
# File lib/elm/files.rb, line 32
def stderr
  @run_status.stderr
end
stdout() click to toggle source
# File lib/elm/files.rb, line 27
def stdout
  @run_status.stdout
end