類別 SyntaxError
在遇到語法無效的 Ruby 程式碼時引發。
eval("1+1=2")
引發例外
SyntaxError: (eval):1: syntax error, unexpected '=', expecting $end
屬性
path[R]
無法解析的路徑
公開類別方法
new([msg]) → syntax_error 按一下以切換來源
建構 SyntaxError
例外。
static VALUE syntax_error_initialize(int argc, VALUE *argv, VALUE self) { VALUE mesg; if (argc == 0) { mesg = rb_fstring_lit("compile error"); argc = 1; argv = &mesg; } return rb_call_super(argc, argv); }