summaryrefslogtreecommitdiff
path: root/Objective-C
diff options
context:
space:
mode:
Diffstat (limited to 'Objective-C')
-rw-r--r--Objective-C/libobjcl.m6
1 files changed, 5 insertions, 1 deletions
diff --git a/Objective-C/libobjcl.m b/Objective-C/libobjcl.m
index 85fc492..eb6bdd6 100644
--- a/Objective-C/libobjcl.m
+++ b/Objective-C/libobjcl.m
@@ -215,7 +215,7 @@ objcl_invoke_with_types (int argc,
either. */
method = objcl_get_method_implementation (receiver, method_selector,
superclass_for_send_super);
- TRACE (@"method == NULL");
+ TRACE (@"method ?= NULL");
if (method == NULL)
[[NSException exceptionWithName: @"MLKNoApplicableMethod"
reason: @"Tried to call a non-existent method."
@@ -678,6 +678,8 @@ imp_closure (ffi_cif *cif, void *result, void **args, void *user_data)
{
id exception;
+ TRACE (@"imp-closure");
+
ffi_call (cif, user_data, result, args);
exception = objcl_current_exception;
@@ -686,6 +688,8 @@ imp_closure (ffi_cif *cif, void *result, void **args, void *user_data)
if (exception != nil)
[exception raise];
+
+ TRACE (@"imp-closure => %");
}