mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
a95f679283
It seems dag_set_live_vars still served a purpose after all, but I don't feel like bringing it as I'd rather implement its param handing in dagnode_set_edges. I've now got a test case for it, though the test currently causes the VM to segfault (even with pr_boundscheck 2!).
57 lines
927 B
R
57 lines
927 B
R
string got;
|
|
|
|
SEL (string name) sel_get_uid = #0;
|
|
@param (id receiver, SEL op, @va_list args) obj_msg_sendv = #0;
|
|
id (Class class) class_create_instance = #0;
|
|
int obj_increment_retaincount (id object) = #0;
|
|
|
|
void
|
|
send (id obj, string cmd, string str)
|
|
{
|
|
@static @param params[1];
|
|
@va_list va_list = {1, params};
|
|
SEL sel;
|
|
|
|
params[0].string_val = str;
|
|
sel = sel_get_uid (cmd);
|
|
obj_msg_sendv (obj, sel, va_list);
|
|
}
|
|
|
|
@interface Object //just so the runtime doesn't complain
|
|
{
|
|
Class isa;
|
|
}
|
|
+alloc;
|
|
-init;
|
|
-catch:(string) it;
|
|
@end
|
|
|
|
int
|
|
main ()
|
|
{
|
|
id obj = [[Object alloc] init];
|
|
send (obj, "catch:", "it");
|
|
return !(got == "it");
|
|
}
|
|
|
|
@implementation Object
|
|
+alloc
|
|
{
|
|
return class_create_instance (self);
|
|
}
|
|
|
|
-init
|
|
{
|
|
obj_increment_retaincount (self);
|
|
return self;
|
|
}
|
|
|
|
-catch:(string) it
|
|
{
|
|
got = it;
|
|
return self;
|
|
}
|
|
@end
|
|
|
|
id (id receiver, SEL op, ...) obj_msgSend = #0;
|
|
void __obj_exec_class (struct obj_module *msg) = #0;
|