class ToFactory::NullRepresentation

Public Class Methods

new(sexp) click to toggle source
# File lib/to_factory/representation.rb, line 5
def initialize(sexp)
  @sexp = sexp
end

Public Instance Methods

definition() click to toggle source
# File lib/to_factory/representation.rb, line 17
def definition
  to_ruby(@sexp)
end
name() click to toggle source
# File lib/to_factory/representation.rb, line 9
def name
  nil
end
parent() click to toggle source
# File lib/to_factory/representation.rb, line 13
def parent
  nil
end