示例#1
0
文件: test_dotnet.py 项目: sota/pypy
 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
文件: interp_clr.py 项目: sota/pypy
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
文件: test_dotnet.py 项目: sota/pypy
 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
文件: test_dotnet.py 项目: sota/pypy
 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
文件: test_dotnet.py 项目: sota/pypy
 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
文件: test_dotnet.py 项目: sota/pypy
 def fn():
     x = box(42)
     return x.GetType() ==  typeof(System.Int32)
示例#15
0
文件: test_dotnet.py 项目: sota/pypy
 def fn():
     x = init_array(System.Object, box(42), box(43))
     return len(x)
示例#16
0
文件: test_dotnet.py 项目: sota/pypy
 def fn():
     x = init_array(System.Object, box(42), box(43))
     x[0] = None
     return x[0]
示例#17
0
文件: test_dotnet.py 项目: sota/pypy
 def fn():
     x = init_array(System.Object, box(42), box(43))
     return unbox(x[0], ootype.Signed) + unbox(x[1], ootype.Signed)
示例#18
0
文件: test_dotnet.py 项目: sota/pypy
 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
文件: test_dotnet.py 项目: sota/pypy
 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
文件: test_dotnet.py 项目: sota/pypy
 def fn():
     x = ArrayList()
     x.Add(box('foo'))
     return unbox(x.get_Item(0), ootype.String)
示例#23
0
文件: test_dotnet.py 项目: sota/pypy
 def fn(flag):
     if flag:
         x = None
     else:
         x = box(42)
     return g(x)
示例#24
0
文件: test_dotnet.py 项目: sota/pypy
 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
文件: test_dotnet.py 项目: sota/pypy
 def fn():
     b_obj = box(42)
     return unbox(b_obj, Foo)
示例#27
0
文件: test_dotnet.py 项目: sota/pypy
 def fn():
     return box(System.Object()).ToString()
示例#28
0
文件: test_dotnet.py 项目: sota/pypy
 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
文件: test_dotnet.py 项目: sota/pypy
 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
文件: test_dotnet.py 项目: sota/pypy
 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
文件: test_dotnet.py 项目: sota/pypy
 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
文件: test_dotnet.py 项目: sota/pypy
 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
文件: test_dotnet.py 项目: sota/pypy
 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
文件: test_dotnet.py 项目: sota/pypy
 def fn():
     return box(42)
示例#41
0
 def fn():
     x = init_array(System.Object, box(42), box(43))
     return len(x)
示例#42
0
文件: test_dotnet.py 项目: sota/pypy
 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
文件: test_dotnet.py 项目: sota/pypy
 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
文件: boxing_rules.py 项目: sota/pypy
 def tocli(self):
     return box(self)
示例#53
0
 def fn():
     obj = box(c)
     t = clidowncast(obj, System.Type)
     return t.get_Name()
示例#54
0
文件: boxing_rules.py 项目: sota/pypy
 def tocli(self):
     return box(self.intval)
示例#55
0
 def tocli(self):
     return box(self)
示例#56
0
文件: boxing_rules.py 项目: sota/pypy
 def tocli(self):
     return box(self.floatval)
示例#57
0
 def tocli(self):
     return box(self.floatval)
示例#58
0
文件: boxing_rules.py 项目: sota/pypy
 def tocli(self):
     return box(self.boolval)
示例#59
0
 def tocli(self):
     return box(self._value)
示例#60
0
文件: boxing_rules.py 项目: sota/pypy
 def tocli(self):
     return box(self._value)