我有一些我正在修改的 Ruby/ERB 代码
再培训局:
"<%= register.endbit(address) %>"
红宝石:
def endbit(addr=nil,limit_to_max=false)
if addr.nil?
b = self.startbit + self.width - 1
else
b = addr.bits_in_register(self.name).last.reg_position
end
limit_to_max && !self.max_width.nil? && b >= self.max_width ? self.max_width - 1 : b
end
这是附带的代码并且工作正常。
我将自己的函数添加到名为 return_a 的 ruby 文件中
def return_in(input)
return input
end
在 ERB 文件中,我只有这一行:
"<%= register.return_in("a") %>"
我收到一个错误
FAILED 1 error: undefined method `return_in' for nil:NilClass
我错过了什么?