You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,22 @@ slug: ios-changelog
7
7
previous_url: /Changelogs/iOS Runtime
8
8
---
9
9
10
+
6.4.2 (2020-02-17)
11
+
=====
12
+
13
+
### Bug Fixes
14
+
15
+
***debugging:** Do not close data socket prematurely ([#1254](https://github.com/NativeScript/ios-runtime/issues/1254))
16
+
17
+
18
+
6.4.1 (2020-02-14)
19
+
=====
20
+
21
+
### Bug Fixes
22
+
23
+
***metadata-generator:** Typings generation of global C functions ([cbf89d0](https://github.com/NativeScript/ios-runtime/commit/cbf89d0))
@throw [NSExceptionexceptionWithName:NSGenericExceptionreason:[NSStringstringWithFormat:@"Struct \"%s\" is missing from metadata. It may have been blacklisted.", structName.utf8().data()] userInfo:nil];
104
+
NSString* errorMsg = [NSStringstringWithFormat:@"Struct \"%s\" is missing from metadata. It may have been blacklisted.", structName.utf8().data()];
105
+
NS_THROW(errorMsg);
105
106
}
106
107
107
108
ffi_type* ffiType = newffi_type({ .size = 0,
@@ -277,7 +278,7 @@
277
278
278
279
if (!klass || !metadata) {
279
280
if (strcmp(metadata->name(), "NSObject") == 0) {
280
-
@throw [NSExceptionexceptionWithName:NSGenericExceptionreason:@"fatal error: NativeScript cannot create constructor for NSObject."userInfo:nil];
281
+
NS_THROW(@"fatal error: NativeScript cannot create constructor for NSObject.");
281
282
}
282
283
#ifdef DEBUG
283
284
NSLog(@"** Can not create constructor for \"%s\". Casting it to \"NSObject\". **", metadata->name());
@@ -478,9 +479,8 @@
478
479
if (Class klass = objc_getClass(declarationName.utf8().data())) {
479
480
result = globalObject->constructorFor(klass, additionalProtocols);
480
481
} else {
481
-
auto scope = DECLARE_THROW_SCOPE(execState->vm());
482
-
WTF::String message = makeString("Class \"", declarationName, "\" referenced by type encoding not found at runtime.");
0 commit comments