mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 04:57:03 +00:00
8 lines
186 B
JavaScript
8 lines
186 B
JavaScript
|
|
var the_class = objj_allocateClassPair(Nil, "TestClass"),
|
|
meta_class = the_class.isa;
|
|
|
|
class_addIvars(the_class,[new objj_ivar("ivar","Type")]);
|
|
|
|
objj_registerClassPair(the_class);
|