Skip to content

Commit 7081e5a

Browse files
authored
feat: Ada 3.1.3 (#270)
1 parent 85fb80e commit 7081e5a

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

NativeScript/ada/ada.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* auto-generated on 2025-02-23 20:08:55 -0500. Do not edit! */
1+
/* auto-generated on 2025-02-26 20:29:12 -0500. Do not edit! */
22
/* begin file src/ada.cpp */
33
#include "ada.h"
44
/* begin file src/checkers.cpp */

NativeScript/ada/ada.h

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* auto-generated on 2025-02-23 20:08:55 -0500. Do not edit! */
1+
/* auto-generated on 2025-02-26 20:29:12 -0500. Do not edit! */
22
/* begin file include/ada.h */
33
/**
44
* @file ada.h
@@ -290,7 +290,8 @@ bool valid_name_code_point(char32_t input, bool first);
290290
ADA_DISABLE_GCC_WARNING("-Wreturn-type") \
291291
ADA_DISABLE_GCC_WARNING("-Wshadow") \
292292
ADA_DISABLE_GCC_WARNING("-Wunused-parameter") \
293-
ADA_DISABLE_GCC_WARNING("-Wunused-variable")
293+
ADA_DISABLE_GCC_WARNING("-Wunused-variable") \
294+
ADA_DISABLE_GCC_WARNING("-Wsign-compare")
294295
#define ADA_PRAGMA(P) _Pragma(#P)
295296
#define ADA_DISABLE_GCC_WARNING(WARNING) \
296297
ADA_PRAGMA(GCC diagnostic ignored WARNING)
@@ -9202,34 +9203,32 @@ result<std::optional<url_pattern_result>> url_pattern<regex_provider>::match(
92029203
// https://github.com/cloudflare/workerd/blob/8620d14012513a6ce04d079e401d3becac3c67bd/src/workerd/jsg/url.c%2B%2B#L2038
92039204
protocol = url->get_protocol().substr(0, url->get_protocol().size() - 1);
92049205
// Set username to url’s username.
9205-
username = std::move(url->get_username());
9206+
username = url->get_username();
92069207
// Set password to url’s password.
9207-
password = std::move(url->get_password());
9208+
password = url->get_password();
92089209
// Set hostname to url’s host, serialized, or the empty string if the value
92099210
// is null.
9210-
hostname = std::move(url->get_hostname());
9211+
hostname = url->get_hostname();
92119212
// Set port to url’s port, serialized, or the empty string if the value is
92129213
// null.
9213-
port = std::move(url->get_port());
9214+
port = url->get_port();
92149215
// Set pathname to the result of URL path serializing url.
9215-
pathname = std::move(url->get_pathname());
9216+
pathname = url->get_pathname();
92169217
// Set search to url’s query or the empty string if the value is null.
92179218
// IMPORTANT: Not documented on the URLPattern spec, but search prefix '?'
92189219
// is removed. Similar work was done on workerd:
92199220
// https://github.com/cloudflare/workerd/blob/8620d14012513a6ce04d079e401d3becac3c67bd/src/workerd/jsg/url.c%2B%2B#L2232
92209221
if (url->has_search()) {
92219222
auto view = url->get_search();
9222-
search =
9223-
view.starts_with("?") ? url->get_search().substr(1) : std::move(view);
9223+
search = view.starts_with("?") ? url->get_search().substr(1) : view;
92249224
}
92259225
// Set hash to url’s fragment or the empty string if the value is null.
92269226
// IMPORTANT: Not documented on the URLPattern spec, but hash prefix '#' is
92279227
// removed. Similar work was done on workerd:
92289228
// https://github.com/cloudflare/workerd/blob/8620d14012513a6ce04d079e401d3becac3c67bd/src/workerd/jsg/url.c%2B%2B#L2242
92299229
if (url->has_hash()) {
92309230
auto view = url->get_hash();
9231-
hash =
9232-
view.starts_with("#") ? url->get_hash().substr(1) : std::move(view);
9231+
hash = view.starts_with("#") ? url->get_hash().substr(1) : view;
92339232
}
92349233
}
92359234

@@ -9456,7 +9455,8 @@ constructor_string_parser<regex_provider>::is_non_special_pattern_char(
94569455
// If token’s value is not value, then return false.
94579456
// TODO: Remove this once we make sure get_safe_token returns a non-empty
94589457
// string.
9459-
if (!token->value.empty() && token->value[0] != value) {
9458+
if (!token->value.empty() &&
9459+
static_cast<uint32_t>(token->value[0]) != value) {
94609460
return false;
94619461
}
94629462

@@ -10454,14 +10454,14 @@ constructor_string_parser<regex_provider>::parse(std::string_view input) {
1045410454
#ifndef ADA_ADA_VERSION_H
1045510455
#define ADA_ADA_VERSION_H
1045610456

10457-
#define ADA_VERSION "3.1.1"
10457+
#define ADA_VERSION "3.1.3"
1045810458

1045910459
namespace ada {
1046010460

1046110461
enum {
1046210462
ADA_VERSION_MAJOR = 3,
1046310463
ADA_VERSION_MINOR = 1,
10464-
ADA_VERSION_REVISION = 1,
10464+
ADA_VERSION_REVISION = 3,
1046510465
};
1046610466

1046710467
} // namespace ada

0 commit comments

Comments
 (0)