X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Filasm%2Fcodegen%2FSentinel.cs;h=e94a3bad5b41b5998f6a61e7509cf634e3f5b4d1;hb=64937f6167ffc9d29a3d16f4ec0c3732022047ac;hp=6bbaa38923ee2ba86fb676024b57c88cc8fc7a1b;hpb=948dbf8d4581ac17f5420cc4f7dc375e3c502576;p=mono.git diff --git a/mcs/ilasm/codegen/Sentinel.cs b/mcs/ilasm/codegen/Sentinel.cs index 6bbaa38923e..e94a3bad5b4 100644 --- a/mcs/ilasm/codegen/Sentinel.cs +++ b/mcs/ilasm/codegen/Sentinel.cs @@ -8,16 +8,27 @@ // using System; +using System.Collections; namespace Mono.ILASM { public class SentinelTypeRef : BaseTypeRef { public SentinelTypeRef () - : base ("...") + : this (null, null) { } + public SentinelTypeRef (ArrayList conv_list, string sig_mod) + : base ("...", conv_list, sig_mod) + { + } + + public override BaseTypeRef Clone () + { + return new SentinelTypeRef ((ArrayList) ConversionList.Clone (), sig_mod); + } + public override void Resolve (CodeGen code_gen) { if (is_resolved)