Skip to content

Commit 3201e12

Browse files
committed
feat: ada 3.0.1
1 parent 0ba17d9 commit 3201e12

File tree

2 files changed

+49
-5
lines changed

2 files changed

+49
-5
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-01-30 14:25:38 -0500. Do not edit! */
1+
/* auto-generated on 2025-01-30 18:48:55 -0500. Do not edit! */
22
/* begin file src/ada.cpp */
33
#include "ada.h"
44
/* begin file src/checkers.cpp */

NativeScript/ada/ada.h

+48-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* auto-generated on 2025-01-30 14:25:38 -0500. Do not edit! */
1+
/* auto-generated on 2025-01-30 18:48:55 -0500. Do not edit! */
22
/* begin file include/ada.h */
33
/**
44
* @file ada.h
@@ -5306,15 +5306,59 @@ class url_pattern {
53065306
std::variant<std::string_view, url_pattern_init> input,
53075307
const std::string_view* base_url, const url_pattern_options* options);
53085308

5309-
private:
5309+
/**
5310+
* @private
5311+
* We can not make this private due to a LLVM bug.
5312+
* Ref: https://github.com/ada-url/ada/pull/859
5313+
*/
53105314
url_pattern_component<regex_provider> protocol_component{};
5315+
/**
5316+
* @private
5317+
* We can not make this private due to a LLVM bug.
5318+
* Ref: https://github.com/ada-url/ada/pull/859
5319+
*/
53115320
url_pattern_component<regex_provider> username_component{};
5321+
/**
5322+
* @private
5323+
* We can not make this private due to a LLVM bug.
5324+
* Ref: https://github.com/ada-url/ada/pull/859
5325+
*/
53125326
url_pattern_component<regex_provider> password_component{};
5327+
/**
5328+
* @private
5329+
* We can not make this private due to a LLVM bug.
5330+
* Ref: https://github.com/ada-url/ada/pull/859
5331+
*/
53135332
url_pattern_component<regex_provider> hostname_component{};
5333+
/**
5334+
* @private
5335+
* We can not make this private due to a LLVM bug.
5336+
* Ref: https://github.com/ada-url/ada/pull/859
5337+
*/
53145338
url_pattern_component<regex_provider> port_component{};
5339+
/**
5340+
* @private
5341+
* We can not make this private due to a LLVM bug.
5342+
* Ref: https://github.com/ada-url/ada/pull/859
5343+
*/
53155344
url_pattern_component<regex_provider> pathname_component{};
5345+
/**
5346+
* @private
5347+
* We can not make this private due to a LLVM bug.
5348+
* Ref: https://github.com/ada-url/ada/pull/859
5349+
*/
53165350
url_pattern_component<regex_provider> search_component{};
5351+
/**
5352+
* @private
5353+
* We can not make this private due to a LLVM bug.
5354+
* Ref: https://github.com/ada-url/ada/pull/859
5355+
*/
53175356
url_pattern_component<regex_provider> hash_component{};
5357+
/**
5358+
* @private
5359+
* We can not make this private due to a LLVM bug.
5360+
* Ref: https://github.com/ada-url/ada/pull/859
5361+
*/
53185362
bool ignore_case_ = false;
53195363
};
53205364

@@ -10261,14 +10305,14 @@ constructor_string_parser<regex_provider>::parse(std::string_view input) {
1026110305
#ifndef ADA_ADA_VERSION_H
1026210306
#define ADA_ADA_VERSION_H
1026310307

10264-
#define ADA_VERSION "3.0.0"
10308+
#define ADA_VERSION "3.0.1"
1026510309

1026610310
namespace ada {
1026710311

1026810312
enum {
1026910313
ADA_VERSION_MAJOR = 3,
1027010314
ADA_VERSION_MINOR = 0,
10271-
ADA_VERSION_REVISION = 0,
10315+
ADA_VERSION_REVISION = 1,
1027210316
};
1027310317

1027410318
} // namespace ada

0 commit comments

Comments
 (0)