[ruby/prism] Match CRuby error message for unknown regexp options

https://github.com/ruby/prism/commit/73669b59f6
This commit is contained in:
Kevin Newton 2024-06-11 08:24:43 -04:00 committed by git
parent d6b1822f22
commit 47322b592a
2 changed files with 3 additions and 3 deletions

View File

@ -319,7 +319,7 @@ static const pm_diagnostic_data_t diagnostic_messages[PM_DIAGNOSTIC_ID_MAX] = {
[PM_ERR_REGEXP_NON_ESCAPED_MBC] = { "/.../n has a non escaped non ASCII character in non ASCII-8BIT script: /%.*s/", PM_ERROR_LEVEL_SYNTAX }, [PM_ERR_REGEXP_NON_ESCAPED_MBC] = { "/.../n has a non escaped non ASCII character in non ASCII-8BIT script: /%.*s/", PM_ERROR_LEVEL_SYNTAX },
[PM_ERR_REGEXP_INVALID_UNICODE_RANGE] = { "invalid Unicode range: /%.*s/", PM_ERROR_LEVEL_SYNTAX }, [PM_ERR_REGEXP_INVALID_UNICODE_RANGE] = { "invalid Unicode range: /%.*s/", PM_ERROR_LEVEL_SYNTAX },
[PM_ERR_REGEXP_PARSE_ERROR] = { "%s", PM_ERROR_LEVEL_SYNTAX }, [PM_ERR_REGEXP_PARSE_ERROR] = { "%s", PM_ERROR_LEVEL_SYNTAX },
[PM_ERR_REGEXP_UNKNOWN_OPTIONS] = { "unknown regexp %s: %.*s", PM_ERROR_LEVEL_SYNTAX }, [PM_ERR_REGEXP_UNKNOWN_OPTIONS] = { "unknown regexp %s - %.*s", PM_ERROR_LEVEL_SYNTAX },
[PM_ERR_REGEXP_TERM] = { "unterminated regexp meets end of file; expected a closing delimiter", PM_ERROR_LEVEL_SYNTAX }, [PM_ERR_REGEXP_TERM] = { "unterminated regexp meets end of file; expected a closing delimiter", PM_ERROR_LEVEL_SYNTAX },
[PM_ERR_REGEXP_UTF8_CHAR_NON_UTF8_REGEXP] = { "UTF-8 character in non UTF-8 regexp: /%s/", PM_ERROR_LEVEL_SYNTAX }, [PM_ERR_REGEXP_UTF8_CHAR_NON_UTF8_REGEXP] = { "UTF-8 character in non UTF-8 regexp: /%s/", PM_ERROR_LEVEL_SYNTAX },
[PM_ERR_RESCUE_EXPRESSION] = { "expected a rescued expression", PM_ERROR_LEVEL_SYNTAX }, [PM_ERR_RESCUE_EXPRESSION] = { "expected a rescued expression", PM_ERROR_LEVEL_SYNTAX },

View File

@ -2134,14 +2134,14 @@ module Prism
def test_regular_expression_with_unknown_regexp_options def test_regular_expression_with_unknown_regexp_options
source = "/foo/AZaz" source = "/foo/AZaz"
errors = [["unknown regexp options: AZaz", 4..9]] errors = [["unknown regexp options - AZaz", 4..9]]
assert_errors expression(source), source, errors assert_errors expression(source), source, errors
end end
def test_interpolated_regular_expression_with_unknown_regexp_options def test_interpolated_regular_expression_with_unknown_regexp_options
source = "/\#{foo}/AZaz" source = "/\#{foo}/AZaz"
errors = [["unknown regexp options: AZaz", 7..12]] errors = [["unknown regexp options - AZaz", 7..12]]
assert_errors expression(source), source, errors assert_errors expression(source), source, errors
end end