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

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMateo Torres-Ruiz <mateoatr@users.noreply.github.com>2020-06-26 05:10:37 +0300
committerGitHub <noreply@github.com>2020-06-26 05:10:37 +0300
commit8a33dbd0074d30b4167302a42295c1330dca62e4 (patch)
treebcc67a60813b1647fcd0c6abca975688758faef7 /test/Mono.Linker.Tests.Cases.Expectations
parentdc8d197c16ccb3b63af48c464778bfa046853057 (diff)
Improve method signature used in warnings and errors (#1249)
* Add GetDisplayName to method reference extensions * Add GetDisplayName for TypeRefs * Add GetNamespaceDisplayName for MemberRefs
Diffstat (limited to 'test/Mono.Linker.Tests.Cases.Expectations')
-rw-r--r--test/Mono.Linker.Tests.Cases.Expectations/Assertions/DisplayNameAttribute.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/Mono.Linker.Tests.Cases.Expectations/Assertions/DisplayNameAttribute.cs b/test/Mono.Linker.Tests.Cases.Expectations/Assertions/DisplayNameAttribute.cs
new file mode 100644
index 000000000..484c91a6b
--- /dev/null
+++ b/test/Mono.Linker.Tests.Cases.Expectations/Assertions/DisplayNameAttribute.cs
@@ -0,0 +1,9 @@
+namespace Mono.Linker.Tests.Cases.Expectations.Assertions
+{
+ public class DisplayNameAttribute : BaseMemberAssertionAttribute
+ {
+ public DisplayNameAttribute (string expectedDisplayName)
+ {
+ }
+ }
+}