dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: cscctest/csharp/class interface7.cs,NONE,1.1


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: cscctest/csharp/class interface7.cs,NONE,1.1 interface7.il,NONE,1.1 interface7.jl,NONE,1.1 Makefile.am,1.34,1.35
Date: Thu, 27 Feb 2003 01:24:20 -0500

Update of /cvsroot/dotgnu-pnet/cscctest/csharp/class
In directory subversions:/tmp/cvs-serv16906/csharp/class

Modified Files:
        Makefile.am 
Added Files:
        interface7.cs interface7.il interface7.jl 
Log Message:


Test pending interface proxies.


--- NEW FILE ---
/*
 * interface7.cs - Test proxy interface definitions.
 *
 * Copyright (C) 2002  Southern Storm Software, Pty Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

using System;
public interface IBar
{
        void Foo();
}
public class FuBar
{
        public void Foo()
        {
        }
}
public class FooBar: FuBar, IBar
{
}

--- NEW FILE ---
.assembly extern '.library'
{
        .ver 0:0:0:0
}
.assembly '<Assembly>'
{
        .ver 0:0:0:0
}
.module '<Module>'
.class public auto interface abstract ansi 'IBar'
{
.method public virtual hidebysig newslot abstract instance void 'Foo'() cil 
managed 
{
} // method Foo
} // class IBar
.class public auto ansi 'FuBar' extends ['.library']'System'.'Object'
{
.method public hidebysig instance void 'Foo'() cil managed 
{
        ret
        .maxstack 0
} // method Foo
.method public hidebysig specialname rtspecialname instance void '.ctor'() cil 
managed 
{
        ldarg.0
        call    instance void ['.library']'System'.'Object'::'.ctor'()
        ret
        .maxstack 1
} // method .ctor
} // class FuBar
.class public auto ansi 'FooBar' extends 'FuBar' implements 'IBar'
{
.method public hidebysig specialname rtspecialname instance void '.ctor'() cil 
managed 
{
        ldarg.0
        call    instance void 'FuBar'::'.ctor'()
        ret
        .maxstack 1
} // method .ctor
.method private final virtual newslot instance void 'IBar.Foo'() il managed
{
        .override       'IBar'::'Foo'
        ldarg.0
        call    instance void 'FuBar'::'Foo'()
        ret
        .maxstack 1
}
} // class FooBar

--- NEW FILE ---
.assembly extern '.library'
{
        .ver 0:0:0:0
}
.assembly '<Assembly>'
{
        .ver 0:0:0:0
}
.module '<Module>'
.class public auto interface abstract ansi 'IBar'
{
.method public virtual hidebysig newslot abstract instance void 'Foo'() cil 
managed java 
{
} // method Foo
} // class IBar
.class public auto ansi 'FuBar' extends ['.library']'System'.'Object'
{
.method public hidebysig instance void 'Foo'() cil managed java 
{
        return
        .locals 1
        .maxstack 0
} // method Foo
.method public hidebysig specialname rtspecialname instance void '.ctor'() cil 
managed java 
{
        aload_0
        invokespecial   instance void ['.library']'System'.'Object'::'.ctor'()
        return
        .locals 1
        .maxstack 1
} // method .ctor
} // class FuBar
.class public auto ansi 'FooBar' extends 'FuBar' implements 'IBar'
{
.method public hidebysig specialname rtspecialname instance void '.ctor'() cil 
managed java 
{
        aload_0
        invokespecial   instance void 'FuBar'::'.ctor'()
        return
        .locals 1
        .maxstack 1
} // method .ctor
} // class FooBar

Index: Makefile.am
===================================================================
RCS file: /cvsroot/dotgnu-pnet/cscctest/csharp/class/Makefile.am,v
retrieving revision 1.34
retrieving revision 1.35
diff -C2 -r1.34 -r1.35
*** Makefile.am 27 Feb 2003 01:02:19 -0000      1.34
--- Makefile.am 27 Feb 2003 06:24:16 -0000      1.35
***************
*** 27,30 ****
--- 27,31 ----
                interface5.cs \
                interface6.cs \
+               interface7.cs \
                method1.cs \
                method2.cs \





reply via email to

[Prev in Thread] Current Thread [Next in Thread]