comparison runtime/integer.h @ 37:640f541e9116

Added support for type declarations on user defined workers and added a few more methods to Int32 in the runtime for the C backend
author Mike Pavone <pavone@retrodev.com>
date Mon, 05 Oct 2009 23:12:43 -0400
parents 31f8182f3433
children aabda74c7a88 d2f9b0a9403d
comparison
equal deleted inserted replaced
36:495dddadd058 37:640f541e9116
8 int32_t num; 8 int32_t num;
9 Object(Int32) 9 Object(Int32)
10 10
11 MethodDef(_PL_,Int32) 11 MethodDef(_PL_,Int32)
12 MethodDef(_MN_,Int32) 12 MethodDef(_MN_,Int32)
13 MethodDef(_TM_,Int32)
14 MethodDef(_DV_,Int32)
15 MethodDef(LShift,Int32)
16 MethodDef(RShift,Int32)
13 MethodDef(_LT_,Int32) 17 MethodDef(_LT_,Int32)
14 MethodDef(_GT_,Int32) 18 MethodDef(_GT_,Int32)
15 19
16 object * make_Int32(int32_t val); 20 object * make_Int32(int32_t val);
17 21