Example #1
0
 def fn(flag):
     a = ArrayList()
     a.Add(None)
     if flag:
         obj = cliupcast(a, System.Object)
     else:
         obj = box(42)
     b = clidowncast(obj, ArrayList)
     return b.get_Item(0)
Example #2
0
 def fn(flag):
     a = ArrayList()
     a.Add(None)
     if flag:
         obj = cliupcast(a, System.Object)
     else:
         obj = box(42)
     b = clidowncast(obj, ArrayList)
     return b.get_Item(0)
Example #3
0
def call_method(space, b_obj, b_type, name, w_args, startfrom):
    b_args, b_paramtypes = rewrap_args(space, w_args, startfrom)
    b_meth = get_method(space, b_type, name, b_paramtypes)
    try:
        # for an explanation of the box() call, see the log message for revision 35167
        b_res = box(b_meth.Invoke(b_obj, b_args))
    except TargetInvocationException, e:
        b_inner = native_exc(e).get_InnerException()
        message = str(b_inner.get_Message())
        # TODO: use the appropriate exception, not StandardError
        raise OperationError(space.w_StandardError, space.wrap(message))
Example #4
0
def call_method(space, b_obj, b_type, name, w_args, startfrom):
    b_args, b_paramtypes = rewrap_args(space, w_args, startfrom)
    b_meth = get_method(space, b_type, name, b_paramtypes)
    try:
        # for an explanation of the box() call, see the log message for revision 35167
        b_res = box(b_meth.Invoke(b_obj, b_args))
    except TargetInvocationException, e:
        b_inner = native_exc(e).get_InnerException()
        message = str(b_inner.get_Message())
        # TODO: use the appropriate exception, not StandardError
        raise OperationError(space.w_StandardError, space.wrap(message))
Example #5
0
 def fn():
     x = ArrayList()
     t = x.GetType()
     meth = t.GetMethod('get_Item')
     args = init_array(System.Object, box(0))
     try:
         meth.Invoke(x, args)
         return "Impossible!"
     except TargetInvocationException, e:
         inner = native_exc(e).get_InnerException()
         message = str(inner.get_Message())
         return message
Example #6
0
 def fn():
     x = ArrayList()
     t = x.GetType()
     meth = t.GetMethod('get_Item')
     args = init_array(System.Object, box(0))
     try:
         meth.Invoke(x, args)
         return "Impossible!"
     except TargetInvocationException, e:
         inner = native_exc(e).get_InnerException()
         message = str(inner.get_Message())
         return message
Example #7
0
 def fn():
     x = ArrayList()
     x.Add(box('foo'))
     return unbox(x.get_Item(0), ootype.String)
Example #8
0
 def fn():
     x = ArrayList()
     x.Add(box(42))
     x.Add(box('Foo'))
     return x.get_Count()
Example #9
0
 def fn():
     x = ArrayList()
     x.Add(box(42))
     x.Add(box('Foo'))
     return x.get_Count()
Example #10
0
 def tocli(self):
     return box(self.intval)
Example #11
0
 def fn(flag):
     a = ootype.new(A)
     a.xx = 42
     b_obj = box(a)
     a2 = unbox(b_obj, A)
     return a2.xx
Example #12
0
 def fn():
     x = ArrayList()
     x.Add(box(42))
     return unbox(x.get_Item(0), ootype.Signed)
Example #13
0
 def fn():
     x = init_array(System.Object, box(42), box(43))
     x[0] = None
     return x[0]
Example #14
0
 def fn():
     x = box(42)
     return x.GetType() ==  typeof(System.Int32)
Example #15
0
 def fn():
     x = init_array(System.Object, box(42), box(43))
     return len(x)
Example #16
0
 def fn():
     x = init_array(System.Object, box(42), box(43))
     x[0] = None
     return x[0]
Example #17
0
 def fn():
     x = init_array(System.Object, box(42), box(43))
     return unbox(x[0], ootype.Signed) + unbox(x[1], ootype.Signed)
Example #18
0
 def fn():
     x = new_array(System.Object, 2)
     x[0] = box(42)
     x[1] = box(43)
     return unbox(x[0], ootype.Signed) + unbox(x[1], ootype.Signed)
Example #19
0
 def fn():
     x = ArrayList()
     x.Add(box(42))
     array = x.ToArray()
     return unbox(array[0], ootype.Signed)
Example #20
0
 def fn():
     return box(System.Object()).ToString()
Example #21
0
 def fn():
     x = new_array(System.Object, 2)
     x[0] = box(42)
     x[1] = box(43)
     return unbox(x[0], ootype.Signed) + unbox(x[1], ootype.Signed)
Example #22
0
 def fn():
     x = ArrayList()
     x.Add(box('foo'))
     return unbox(x.get_Item(0), ootype.String)
Example #23
0
 def fn(flag):
     if flag:
         x = None
     else:
         x = box(42)
     return g(x)
Example #24
0
 def fn():
     obj = Foo()
     b_obj = box(obj)
     obj2 = unbox(b_obj, Foo)
     return obj is obj2
Example #25
0
 def fn():
     obj = Foo()
     b_obj = box(obj)
     obj2 = unbox(b_obj, Foo)
     return obj is obj2
Example #26
0
 def fn():
     b_obj = box(42)
     return unbox(b_obj, Foo)
Example #27
0
 def fn():
     return box(System.Object()).ToString()
Example #28
0
 def fn(flag):
     a = ootype.new(A)
     a.xx = 42
     b_obj = box(a)
     a2 = unbox(b_obj, A)
     return a2.xx
Example #29
0
 def tocli(self):
     return box(self.boolval)
Example #30
0
 def fn():
     obj = Foo()
     x = ArrayList()
     x.Add(box(obj))
     obj2 = unbox(x.get_Item(0), Foo)
     return obj is obj2
Example #31
0
 def fn():
     x = StringBuilder()
     x.Append(box("foo")).Append(box("bar"))
     return x.ToString()
Example #32
0
 def fn():
     int32_obj = box(int32_class)
     int32_type = clidowncast(int32_obj, System.Type)
     return int32_type.get_Name()
Example #33
0
 def fn():
     x = ArrayList()
     x.Add(box(42))
     return unbox(x.get_Item(0), ootype.Signed)
Example #34
0
 def fn():
     utils_obj = box(utils_class)
     utils_type = clidowncast(utils_obj, System.Type)
     return utils_type.get_Name()
Example #35
0
 def fn():
     x = box(42)
     t = x.GetType()
     return t.get_Name()
Example #36
0
 def fn(flag):
     if flag:
         x = a
     else:
         x = b
     return clidowncast(box(x), System.Type).get_Name()
Example #37
0
 def fn():
     x = ArrayList()
     x.Add(box(42))
     array = x.ToArray()
     return unbox(array[0], ootype.Signed)
Example #38
0
 def fn():
     obj = box(c)
     t = clidowncast(obj, System.Type)
     return t.get_Name()
Example #39
0
 def fn():
     x = init_array(System.Object, box(42), box(43))
     return unbox(x[0], ootype.Signed) + unbox(x[1], ootype.Signed)
Example #40
0
 def fn():
     return box(42)
Example #41
0
 def fn():
     x = init_array(System.Object, box(42), box(43))
     return len(x)
Example #42
0
 def fn(flag):
     if flag:
         return box(42)
     else:
         return box(None)
Example #43
0
 def fn():
     x = box(42)
     return x.GetType() == typeof(System.Int32)
Example #44
0
 def fn():
     int32_obj = box(int32_class)
     int32_type = clidowncast(int32_obj, System.Type)
     return int32_type.get_Name()
Example #45
0
 def fn(flag):
     if flag:
         x = None
     else:
         x = box(42)
     return g(x)
Example #46
0
 def fn(flag):
     if flag:
         x = a
     else:
         x = b
     return clidowncast(box(x), System.Type).get_Name()
Example #47
0
 def fn():
     b_obj = box(42)
     return unbox(b_obj, Foo)
Example #48
0
 def fn():
     return box(42)
Example #49
0
 def fn():
     obj = Foo()
     x = ArrayList()
     x.Add(box(obj))
     obj2 = unbox(x.get_Item(0), Foo)
     return obj is obj2
Example #50
0
 def fn():
     x = box(42)
     t = x.GetType()
     return t.get_Name()
Example #51
0
 def fn():
     utils_obj = box(utils_class)
     utils_type = clidowncast(utils_obj, System.Type)
     return utils_type.get_Name()
Example #52
0
 def tocli(self):
     return box(self)
Example #53
0
 def fn():
     obj = box(c)
     t = clidowncast(obj, System.Type)
     return t.get_Name()
Example #54
0
 def tocli(self):
     return box(self.intval)
Example #55
0
 def tocli(self):
     return box(self)
Example #56
0
 def tocli(self):
     return box(self.floatval)
Example #57
0
 def tocli(self):
     return box(self.floatval)
Example #58
0
 def tocli(self):
     return box(self.boolval)
Example #59
0
 def tocli(self):
     return box(self._value)
Example #60
0
 def tocli(self):
     return box(self._value)