-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefaultParamAttributeProvider.cs
79 lines (68 loc) · 1.72 KB
/
DefaultParamAttributeProvider.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
namespace Durian.Analysis.DefaultParam;
/// <summary>
/// <see cref="ISourceTextProvider"/> that creates syntax tree of the <c>Durian.DefaultParamAttribute</c> class.
/// </summary>
public sealed class DefaultParamAttributeProvider : SourceTextProvider
{
/// <summary>
/// Full name of the provided type.
/// </summary>
public const string FullName = Namespace + "." + TypeName;
/// <summary>
/// Namespace the provided type is located in.
/// </summary>
public const string Namespace = DurianStrings.MainNamespace;
/// <summary>
/// Name of the 'Type' property.
/// </summary>
public const string Type = "Type";
/// <summary>
/// Name of the provided type.
/// </summary>
public const string TypeName = "DefaultParamAttribute";
/// <inheritdoc/>
public override string GetFullName()
{
return FullName;
}
/// <inheritdoc/>
public override string GetNamespace()
{
return Namespace;
}
/// <inheritdoc/>
public override string GetText()
{
return
$$"""
using System;
namespace {{Namespace}}
{
/// <summary>
/// Applies a default type for the generic parameter.
/// </summary>
[AttributeUsage(AttributeTargets.GenericParameter, AllowMultiple = false, Inherited = true)]
public sealed class {{TypeName}} : Attribute
{
/// <summary>
/// Type that is used as the default type for this generic parameter.
/// </summary>
public Type {{Type}} { get; }
/// <summary>
/// Initializes a new instance of the <see cref="{{TypeName}}"/> class.
/// </summary>
/// <param name="type">Type that is used as the default type for this generic parameter.</param>
public {{TypeName}}(Type type)
{
{{Type}} = type;
}
}
}
""";
}
/// <inheritdoc/>
public override string GetTypeName()
{
return TypeName;
}
}