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

Draft: Add support for dayPeriod and fractionalSecondDigits in Intl.DateTimeFormat #1218

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Commits on Dec 12, 2023

  1. Add allowlist for tests which use const and update feature skiplist

    Many tests which use "const" are not actually testing the behavior of
    the "const" keyword, they are just using it as it is standard practice
    in newer JavaScript versions.
    
    This allows allowlisting individual tests or directories which use
    "const".
    
    This commit additionally updates the skiplist for ECMA-402 2024
    ewlsh committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    da77914 View commit details
    Browse the repository at this point in the history
  2. Support skipping unsupported test262 features in Android runner

    Also update the Android test262 runner to print the individual
    testcases for debugging and visibility.
    ewlsh committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    a9fca42 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    711b623 View commit details
    Browse the repository at this point in the history
  4. Fix incorrect fall-through in fractionalSecondDigits Apple platforms

    In DateTimeFormat the switch statement for the fractionalSecondDigits
    skeleton currently is missing "break" statements - leading to incorrect
    skeleton strings (e.g. SSSSSSS)
    ewlsh committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    171feed View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2e45cb9 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    32aa164 View commit details
    Browse the repository at this point in the history