diff options
author | Samuel Williams <[email protected]> | 2022-12-08 18:19:53 +1300 |
---|---|---|
committer | GitHub <[email protected]> | 2022-12-08 18:19:53 +1300 |
commit | 6fd5d2dc003bda5ce0685abd2b975d7ac7079d46 (patch) | |
tree | a7cffd3b1b2f40b76511d785b5c00f3d35245ee6 /error.c | |
parent | b2764752b2bccb8e4574891d380d0f0a3d67add0 (diff) |
Introduce `IO.new(..., path:)` and promote `File#path` to `IO#path`. (#6867)
Notes
Notes:
Merged-By: ioquatix <[email protected]>
Diffstat (limited to 'error.c')
-rw-r--r-- | error.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -3024,14 +3024,12 @@ Init_Exception(void) rb_eSyntaxError = rb_define_class("SyntaxError", rb_eScriptError); rb_define_method(rb_eSyntaxError, "initialize", syntax_error_initialize, -1); - ID id_path = rb_intern_const("path"); - /* the path failed to parse */ - rb_attr(rb_eSyntaxError, id_path, TRUE, FALSE, FALSE); + rb_attr(rb_eSyntaxError, idPath, TRUE, FALSE, FALSE); rb_eLoadError = rb_define_class("LoadError", rb_eScriptError); /* the path failed to load */ - rb_attr(rb_eLoadError, id_path, TRUE, FALSE, FALSE); + rb_attr(rb_eLoadError, idPath, TRUE, FALSE, FALSE); rb_eNotImpError = rb_define_class("NotImplementedError", rb_eScriptError); |