mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 12:24:24 +00:00
4028fec3b5
This work pulls in v8 support for these features with appropriate changes for Dart and closes https://github.com/dart-lang/sdk/issues/34935. This adds support for the following features: * Interpreting patterns as Unicode patterns instead of BMP patterns * the dotAll flag (`/s`) for changing the behavior of '.' to also match line terminators * Escapes for character classes described by Unicode property groups (e.g., \p{Greek} to match all Greek characters, or \P{Greek} for all non-Greek characters). The following TC39 proposals describe some of the added features: * https://github.com/tc39/proposal-regexp-dotall-flag * https://github.com/tc39/proposal-regexp-unicode-property-escapes These additional changes are included: * Extends named capture group names to include the full range of identifier characters supported by ECMAScript, not just ASCII. * Changing the RegExp interface to return RegExpMatch objects, not Match objects, so that downcasting is not necessary to use named capture groups from Dart **Note**: The changes to the RegExp interface are a breaking change for implementers of the RegExp interface. Current users of the RegExp interface (i.e., code using Dart RegExp objects) will not be affected. Change-Id: Ie62e6082a0e2fedc1680ef2576ce0c6db80fc19a Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/100641 Reviewed-by: Martin Kustermann <kustermann@google.com> Commit-Queue: Stevie Strickland <sstrickl@google.com>
30 lines
1,002 B
Text
30 lines
1,002 B
Text
# Copyright (c) 2017 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# Originally from v8, included in our repository as the ICU third party
|
|
# import depends on it for building.
|
|
|
|
# This header file defines the "host_byteorder" variable.
|
|
# Not that this is currently used only for building v8.
|
|
# The chromium code generally assumes little-endianness.
|
|
declare_args() {
|
|
host_byteorder = "undefined"
|
|
}
|
|
|
|
# Detect host byteorder
|
|
# ppc64 can be either BE or LE
|
|
if (host_cpu == "ppc64") {
|
|
if (current_os == "aix") {
|
|
host_byteorder = "big"
|
|
} else {
|
|
# Only use the script when absolutely necessary
|
|
host_byteorder =
|
|
exec_script("//build/config/get_host_byteorder.py", [], "trim string")
|
|
}
|
|
} else if (host_cpu == "ppc" || host_cpu == "s390" || host_cpu == "s390x" ||
|
|
host_cpu == "mips" || host_cpu == "mips64") {
|
|
host_byteorder = "big"
|
|
} else {
|
|
host_byteorder = "little"
|
|
}
|