Skip to content

Commit 08d4406

Browse files
authored
feat: ada 3.1.1 including URLPattern support (#268)
1 parent d4f3b68 commit 08d4406

File tree

9 files changed

+9380
-3629
lines changed

9 files changed

+9380
-3629
lines changed

NativeScript/ada/ada.cpp

Lines changed: 3517 additions & 1775 deletions
Large diffs are not rendered by default.

NativeScript/ada/ada.h

Lines changed: 5015 additions & 1847 deletions
Large diffs are not rendered by default.

NativeScript/runtime/ModuleBinding.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ namespace tns {
6060
V(worker) \
6161
V(timers) \
6262
V(url) \
63-
V(urlsearchparams)
63+
V(urlsearchparams) \
64+
V(urlpattern)
6465

6566
enum {
6667
NM_F_BUILTIN = 1 << 0, // Unused.

NativeScript/runtime/Runtime.mm

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
#include "ModuleBinding.hpp"
2626
#include "URLImpl.h"
2727
#include "URLSearchParamsImpl.h"
28+
#include "URLPatternImpl.h"
2829

2930
#define STRINGIZE(x) #x
3031
#define STRINGIZE_VALUE_OF(x) STRINGIZE(x)

0 commit comments

Comments
 (0)