Method: VerilogTools::GenerateError#make_message

Defined in:
lib/HDLRuby/verilog_hruby.rb

#make_messageObject

Generate the error message. NOTE: if you want to translate the error message, please redefine the function.



173
174
175
176
177
178
179
180
# File 'lib/HDLRuby/verilog_hruby.rb', line 173

def make_message
  if @filename then
    head = "Generation error for file '#{@filename}' "
  else
    head = "Generation error "
  end
  return head + "line #{@lpos}: " + @msg + "."
end