Skip to content

feat: ada 3.1.1 including URLPattern support #268

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

Merged
merged 10 commits into from
Feb 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5,292 changes: 3,517 additions & 1,775 deletions NativeScript/ada/ada.cpp

Large diffs are not rendered by default.

6,862 changes: 5,015 additions & 1,847 deletions NativeScript/ada/ada.h

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion NativeScript/runtime/ModuleBinding.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ namespace tns {
V(worker) \
V(timers) \
V(url) \
V(urlsearchparams)
V(urlsearchparams) \
V(urlpattern)

enum {
NM_F_BUILTIN = 1 << 0, // Unused.
Expand Down
1 change: 1 addition & 0 deletions NativeScript/runtime/Runtime.mm
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#include "ModuleBinding.hpp"
#include "URLImpl.h"
#include "URLSearchParamsImpl.h"
#include "URLPatternImpl.h"

#define STRINGIZE(x) #x
#define STRINGIZE_VALUE_OF(x) STRINGIZE(x)
Expand Down
Loading
Loading