@@ -113,15 +113,15 @@ + (id)defineClass:(NSString *)declaration instanceMembers:(JSValue *)instanceMem
113113
114114 Class metaClass = objc_getMetaClass (className.UTF8String );
115115
116- types = [NSString stringWithFormat: @" %s%s%s%s " , @encode (NSMethodSignature ), @encode (id ), @encode (SEL ), @encode (SEL )];
116+ types = [NSString stringWithFormat: @" %s%s%s%s " , @encode (NSMethodSignature ), @encode (id ), @encode (SEL ), @encode (SEL )];
117117 result = class_addMethod (cls, @selector (methodSignatureForSelector: ), (IMP )methodSignatureForSelector, types.UTF8String );
118118 result = class_addMethod (metaClass, @selector (methodSignatureForSelector: ), (IMP )methodSignatureForSelector, types.UTF8String );
119119
120- types = [NSString stringWithFormat: @" %s%s%s%s " , @encode (void ), @encode (id ), @encode (SEL ), @encode (NSInvocation )];
120+ types = [NSString stringWithFormat: @" %s%s%s%s " , @encode (void ), @encode (id ), @encode (SEL ), @encode (NSInvocation )];
121121 result = class_addMethod (cls, @selector (forwardInvocation: ), (IMP )forwardInvocation, types.UTF8String );
122122 result = class_addMethod (metaClass, @selector (forwardInvocation: ), (IMP )forwardInvocation, types.UTF8String );
123123
124- types = [NSString stringWithFormat: @" %s%s%s%s " , @encode (BOOL ), @encode (id ), @encode (SEL ), @encode (SEL )];
124+ types = [NSString stringWithFormat: @" %s%s%s%s " , @encode (BOOL ), @encode (id ), @encode (SEL ), @encode (SEL )];
125125 result = class_addMethod (cls, @selector (respondsToSelector: ), (IMP )respondsToSelector, types.UTF8String );
126126 result = class_addMethod (metaClass, @selector (respondsToSelector: ), (IMP )respondsToSelector, types.UTF8String );
127127
0 commit comments