class BlifUtils::AST::ModelHeaderElementOutputs

Attributes

outputList[R]

Public Class Methods

new(outputList) click to toggle source
# File lib/blifutils/ast.rb, line 78
def initialize (outputList)
        @outputList = outputList
end

Public Instance Methods

pretty_print(indent) click to toggle source
# File lib/blifutils/ast.rb, line 82
def pretty_print (indent)
        return '    '*indent + "Outputs: #{@outputList.collect{|str| "\"#{str}\""}.join(', ')}\n"
end