From e4560df62fa231327d5a50328d5f0216d6a878f8 Mon Sep 17 00:00:00 2001 From: Martin Carlberg Date: Tue, 10 Nov 2015 11:31:04 +0100 Subject: [PATCH] Fixed: Use correct property in decorator --- Objective-J/Debug.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objective-J/Debug.js b/Objective-J/Debug.js index 532afc6f2..d8583f634 100644 --- a/Objective-J/Debug.js +++ b/Objective-J/Debug.js @@ -185,7 +185,7 @@ GLOBAL(objj_typecheck_decorator) = function(msgSend) if (!aReceiver) return msgSend.apply(this, arguments); - var types = aReceiver.isa.method_dtable[aSelector].types; + var types = aReceiver.isa.method_dtable[aSelector].method_types; for (var i = 2; i < arguments.length; i++) { try