Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix RegExp bugs #1362

Merged
merged 6 commits into from
Jul 24, 2024
Merged

Fix RegExp bugs #1362

merged 6 commits into from
Jul 24, 2024

Commits on Jul 22, 2024

  1. If there is unicode flag is set but find un-paired utf-16 surrogate i…

    …n RegExp interpreter,
    
    We should not use utf-16 surrogate pair rule for input.
    
    Signed-off-by: Seonghyun Kim <[email protected]>
    ksh8281 committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    10922a3 View commit details
    Browse the repository at this point in the history
  2. RegExp.prototype[Symbols.match] builtin function should read flags pr…

    …operty instead of global
    
    Signed-off-by: Seonghyun Kim <[email protected]>
    ksh8281 committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    098222a View commit details
    Browse the repository at this point in the history
  3. Fix unicode string indexing bug in RegExpExec

    Signed-off-by: Seonghyun Kim <[email protected]>
    ksh8281 committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    34f7b81 View commit details
    Browse the repository at this point in the history
  4. Implement accessor unicodeSets for RegExp prototype

    Signed-off-by: Seonghyun Kim <[email protected]>
    ksh8281 committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    6b54327 View commit details
    Browse the repository at this point in the history
  5. In RegExp ctor, we should replace \n into \\n

    Signed-off-by: Seonghyun Kim <[email protected]>
    ksh8281 committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    bb8ac40 View commit details
    Browse the repository at this point in the history
  6. Update yarr generated unicode data file to unicode 15.1

    Signed-off-by: Seonghyun Kim <[email protected]>
    ksh8281 committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    dba710a View commit details
    Browse the repository at this point in the history