Fixed: Use correct property in decorator

This commit is contained in:
Martin Carlberg
2015-11-10 11:31:04 +01:00
parent 920daf7fde
commit e4560df62f
+1 -1
View File
@@ -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