@nativescript/android 8.9.0-napi-v8.10 → 8.9.0-napi-quickjs.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/framework/app/libs/runtime-libs/nativescript-optimized-with-inspector.aar +0 -0
- package/framework/app/libs/runtime-libs/nativescript-optimized.aar +0 -0
- package/framework/app/libs/runtime-libs/nativescript-regular.aar +0 -0
- package/framework/app/src/main/assets/internal/ts_helpers.js +13 -6
- package/framework/build-tools/android-metadata-generator.jar +0 -0
- package/framework/build-tools/dts-generator.jar +0 -0
- package/framework/build-tools/static-binding-generator.jar +0 -0
- package/framework/gradle.properties +2 -2
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -92,13 +92,13 @@
|
|
|
92
92
|
Array.prototype.slice.call(arguments, 1)
|
|
93
93
|
);
|
|
94
94
|
} else {
|
|
95
|
-
thiz
|
|
95
|
+
thiz = new (Function.prototype.bind.apply(
|
|
96
96
|
Extended,
|
|
97
97
|
[null].concat(Array.prototype.slice.call(arguments, 1))
|
|
98
98
|
))();
|
|
99
99
|
}
|
|
100
100
|
} else {
|
|
101
|
-
thiz
|
|
101
|
+
thiz = new Extended();
|
|
102
102
|
}
|
|
103
103
|
return thiz;
|
|
104
104
|
};
|
|
@@ -107,10 +107,17 @@
|
|
|
107
107
|
var Extended = extend(thiz);
|
|
108
108
|
thiz.__container__ = true;
|
|
109
109
|
if (args && args.length > 0) {
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
110
|
+
if (typeof Extended !== "function") {
|
|
111
|
+
thiz = Reflect.construct(
|
|
112
|
+
Extended,
|
|
113
|
+
[null].concat(args)
|
|
114
|
+
);
|
|
115
|
+
} else {
|
|
116
|
+
thiz = new (Function.prototype.bind.apply(
|
|
117
|
+
Extended,
|
|
118
|
+
[null].concat(args)
|
|
119
|
+
))();
|
|
120
|
+
}
|
|
114
121
|
} else {
|
|
115
122
|
thiz = new Extended();
|
|
116
123
|
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
#Wed, 26 Feb 2025 12:00:30 -0800
|
|
2
2
|
# Project-wide Gradle settings.
|
|
3
3
|
|
|
4
4
|
# IDE (e.g. Android Studio) users:
|
|
@@ -45,4 +45,4 @@ ns_default_kotlinx_metadata_jvm_version=2.0.0
|
|
|
45
45
|
ns_default_mockito_core_version=3.0.0
|
|
46
46
|
ns_default_spotbugs_version=3.1.12
|
|
47
47
|
|
|
48
|
-
ns_engine=
|
|
48
|
+
ns_engine=QUICKJS
|
package/package.json
CHANGED