Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ExpectedLocalsSequenceAttribute.cs « Assertions « Mono.Linker.Tests.Cases.Expectations « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6eea5b5611360f7dd4f481dbca2ec84919e31dfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;

namespace Mono.Linker.Tests.Cases.Expectations.Assertions
{
	[AttributeUsage (AttributeTargets.Method | AttributeTargets.Constructor, Inherited = false, AllowMultiple = false)]
	public class ExpectedLocalsSequenceAttribute : BaseInAssemblyAttribute
	{
		public ExpectedLocalsSequenceAttribute (string[] types)
		{
			if (types == null)
				throw new ArgumentNullException ();
		}

		public ExpectedLocalsSequenceAttribute (Type[] types)
		{
			if (types == null)
				throw new ArgumentNullException ();
		}
	}
}