class BlifUtils::AST::ModelHeaderElementClock

Attributes

clockList[R]

Public Class Methods

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

Public Instance Methods

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