class BlifUtils::AST::ModelHeaderElementInputs
Attributes
inputList[R]
Public Class Methods
new(inputList)
click to toggle source
# File lib/blifutils/ast.rb, line 65 def initialize (inputList) @inputList = inputList end
Public Instance Methods
pretty_print(indent)
click to toggle source
# File lib/blifutils/ast.rb, line 69 def pretty_print (indent) return ' '*indent + "Inputs: #{@inputList.collect{|str| "\"#{str}\""}.join(', ')}\n" end