cvsuser 04/12/15 02:36:29
Modified: . vtable.tbl Log: stub in object vtables Revision Changes Path 1.73 +9 -1 parrot/vtable.tbl Index: vtable.tbl =================================================================== RCS file: /cvs/public/parrot/vtable.tbl,v retrieving revision 1.72 retrieving revision 1.73 diff -u -r1.72 -r1.73 --- vtable.tbl 7 Dec 2004 17:24:48 -0000 1.72 +++ vtable.tbl 15 Dec 2004 10:36:27 -0000 1.73 @@ -1,4 +1,4 @@ -# $Id: vtable.tbl,v 1.72 2004/12/07 17:24:48 rubys Exp $ +# $Id: vtable.tbl,v 1.73 2004/12/15 10:36:27 leo Exp $ # [MAIN] #default section name void init() @@ -274,6 +274,14 @@ void set_attr_str(STRING* idx, PMC* value) PMC* get_class() +void add_parent(PMC* parent) +void become_parent(PMC* class) +INTVAL class_type() +void add_method(STRING* method) +void remove_method(STRING* method) +STRING* namespace_name() +PMC* new_singleton() +PMC* get_anonymous_subclass() void freeze(visit_info* info) void thaw (visit_info* info)
