Пример #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)
Пример #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)
Пример #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))
Пример #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))
Пример #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
Пример #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
Пример #7
0
 def fn():
     x = ArrayList()
     x.Add(box('foo'))
     return unbox(x.get_Item(0), ootype.String)
Пример #8
0
 def fn():
     x = ArrayList()
     x.Add(box(42))
     x.Add(box('Foo'))
     return x.get_Count()
Пример #9
0
 def fn():
     x = ArrayList()
     x.Add(box(42))
     x.Add(box('Foo'))
     return x.get_Count()
Пример #10
0
 def tocli(self):
     return box(self.intval)
Пример #11
0
 def fn(flag):
     a = ootype.new(A)
     a.xx = 42
     b_obj = box(a)
     a2 = unbox(b_obj, A)
     return a2.xx
Пример #12
0
 def fn():
     x = ArrayList()
     x.Add(box(42))
     return unbox(x.get_Item(0), ootype.Signed)
Пример #13
0
 def fn():
     x = init_array(System.Object, box(42), box(43))
     x[0] = None
     return x[0]
Пример #14
0
 def fn():
     x = box(42)
     return x.GetType() ==  typeof(System.Int32)
Пример #15
0
 def fn():
     x = init_array(System.Object, box(42), box(43))
     return len(x)
Пример #16
0
 def fn():
     x = init_array(System.Object, box(42), box(43))
     x[0] = None
     return x[0]
Пример #17
0
 def fn():
     x = init_array(System.Object, box(42), box(43))
     return unbox(x[0], ootype.Signed) + unbox(x[1], ootype.Signed)
Пример #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)
Пример #19
0
 def fn():
     x = ArrayList()
     x.Add(box(42))
     array = x.ToArray()
     return unbox(array[0], ootype.Signed)
Пример #20
0
 def fn():
     return box(System.Object()).ToString()
Пример #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)
Пример #22
0
 def fn():
     x = ArrayList()
     x.Add(box('foo'))
     return unbox(x.get_Item(0), ootype.String)
Пример #23
0
 def fn(flag):
     if flag:
         x = None
     else:
         x = box(42)
     return g(x)
Пример #24
0
 def fn():
     obj = Foo()
     b_obj = box(obj)
     obj2 = unbox(b_obj, Foo)
     return obj is obj2
Пример #25
0
 def fn():
     obj = Foo()
     b_obj = box(obj)
     obj2 = unbox(b_obj, Foo)
     return obj is obj2
Пример #26
0
 def fn():
     b_obj = box(42)
     return unbox(b_obj, Foo)
Пример #27
0
 def fn():
     return box(System.Object()).ToString()
Пример #28
0
 def fn(flag):
     a = ootype.new(A)
     a.xx = 42
     b_obj = box(a)
     a2 = unbox(b_obj, A)
     return a2.xx
Пример #29
0
 def tocli(self):
     return box(self.boolval)
Пример #30
0
 def fn():
     obj = Foo()
     x = ArrayList()
     x.Add(box(obj))
     obj2 = unbox(x.get_Item(0), Foo)
     return obj is obj2
Пример #31
0
 def fn():
     x = StringBuilder()
     x.Append(box("foo")).Append(box("bar"))
     return x.ToString()
Пример #32
0
 def fn():
     int32_obj = box(int32_class)
     int32_type = clidowncast(int32_obj, System.Type)
     return int32_type.get_Name()
Пример #33
0
 def fn():
     x = ArrayList()
     x.Add(box(42))
     return unbox(x.get_Item(0), ootype.Signed)
Пример #34
0
 def fn():
     utils_obj = box(utils_class)
     utils_type = clidowncast(utils_obj, System.Type)
     return utils_type.get_Name()
Пример #35
0
 def fn():
     x = box(42)
     t = x.GetType()
     return t.get_Name()
Пример #36
0
 def fn(flag):
     if flag:
         x = a
     else:
         x = b
     return clidowncast(box(x), System.Type).get_Name()
Пример #37
0
 def fn():
     x = ArrayList()
     x.Add(box(42))
     array = x.ToArray()
     return unbox(array[0], ootype.Signed)
Пример #38
0
 def fn():
     obj = box(c)
     t = clidowncast(obj, System.Type)
     return t.get_Name()
Пример #39
0
 def fn():
     x = init_array(System.Object, box(42), box(43))
     return unbox(x[0], ootype.Signed) + unbox(x[1], ootype.Signed)
Пример #40
0
 def fn():
     return box(42)
Пример #41
0
 def fn():
     x = init_array(System.Object, box(42), box(43))
     return len(x)
Пример #42
0
 def fn(flag):
     if flag:
         return box(42)
     else:
         return box(None)
Пример #43
0
 def fn():
     x = box(42)
     return x.GetType() == typeof(System.Int32)
Пример #44
0
 def fn():
     int32_obj = box(int32_class)
     int32_type = clidowncast(int32_obj, System.Type)
     return int32_type.get_Name()
Пример #45
0
 def fn(flag):
     if flag:
         x = None
     else:
         x = box(42)
     return g(x)
Пример #46
0
 def fn(flag):
     if flag:
         x = a
     else:
         x = b
     return clidowncast(box(x), System.Type).get_Name()
Пример #47
0
 def fn():
     b_obj = box(42)
     return unbox(b_obj, Foo)
Пример #48
0
 def fn():
     return box(42)
Пример #49
0
 def fn():
     obj = Foo()
     x = ArrayList()
     x.Add(box(obj))
     obj2 = unbox(x.get_Item(0), Foo)
     return obj is obj2
Пример #50
0
 def fn():
     x = box(42)
     t = x.GetType()
     return t.get_Name()
Пример #51
0
 def fn():
     utils_obj = box(utils_class)
     utils_type = clidowncast(utils_obj, System.Type)
     return utils_type.get_Name()
Пример #52
0
 def tocli(self):
     return box(self)
Пример #53
0
 def fn():
     obj = box(c)
     t = clidowncast(obj, System.Type)
     return t.get_Name()
Пример #54
0
 def tocli(self):
     return box(self.intval)
Пример #55
0
 def tocli(self):
     return box(self)
Пример #56
0
 def tocli(self):
     return box(self.floatval)
Пример #57
0
 def tocli(self):
     return box(self.floatval)
Пример #58
0
 def tocli(self):
     return box(self.boolval)
Пример #59
0
 def tocli(self):
     return box(self._value)
Пример #60
0
 def tocli(self):
     return box(self._value)