This function is equivalent to luaL_error( http://www.lua.org/manual/5.1/manual.html#luaL_error ).
(format string, args ...interface{})
| 1727 | |
| 1728 | // This function is equivalent to luaL_error( http://www.lua.org/manual/5.1/manual.html#luaL_error ). |
| 1729 | func (ls *LState) RaiseError(format string, args ...interface{}) { |
| 1730 | ls.raiseError(1, format, args...) |
| 1731 | } |
| 1732 | |
| 1733 | // This function is equivalent to lua_error( http://www.lua.org/manual/5.1/manual.html#lua_error ). |
| 1734 | func (ls *LState) Error(lv LValue, level int) { |