-
Notifications
You must be signed in to change notification settings - Fork 0
/
ConstantKindProvider.cs
89 lines (76 loc) · 1.76 KB
/
ConstantKindProvider.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
80
81
82
83
84
85
86
87
88
89
// Copyright (c) Piotr Stenke. All rights reserved.
// Licensed under the MIT license.
using Durian.Analysis;
namespace Durian.ConstExpr
{
/// <summary>
/// <see cref="ISourceTextProvider"/> that creates syntax tree of the <c>Durian.ConstantKind</c> enum.
/// </summary>
public sealed class ConstantKindProvider : SourceTextProvider
{
/// <summary>
/// Name of the 'Constant' field.
/// </summary>
public const string Constant = "Constant";
/// <summary>
/// Name of the 'Field' field.
/// </summary>
public const string Field = "Field";
/// <summary>
/// Full name of the provided type.
/// </summary>
public const string FullName = Namespace + "." + TypeName;
/// <summary>
/// Name of the 'Method' field.
/// </summary>
public const string Method = "Method";
/// <summary>
/// Namespace the provided type is located in.
/// </summary>
public const string Namespace = DurianStrings.MainNamespace;
/// <summary>
/// Name of the 'Property' field.
/// </summary>
public const string Property = "Property";
/// <summary>
/// Name of the provided type.
/// </summary>
public const string TypeName = "ConstantKind";
/// <summary>
/// Initializes a new instance of the <see cref="ConstantKindProvider"/> class.
/// </summary>
public ConstantKindProvider()
{
}
/// <inheritdoc/>
public override string GetFullName()
{
return FullName;
}
/// <inheritdoc/>
public override string GetNamespace()
{
return Namespace;
}
/// <inheritdoc/>
public override string GetText()
{
return
@$"namespace {Namespace}
{{
public enum {TypeName}
{{
{Constant},
{Field},
{Property},
{Method}
}}
}}";
}
/// <inheritdoc/>
public override string GetTypeName()
{
return TypeName;
}
}
}