-
-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathLanguageFeatures.cs
More file actions
308 lines (250 loc) · 6.09 KB
/
LanguageFeatures.cs
File metadata and controls
308 lines (250 loc) · 6.09 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Runtime.CompilerServices;
using System.Runtime.ExceptionServices;
using System.Runtime.Versioning;
#if !NETSTANDARD2_1
using System.Threading.Tasks;
#endif
#pragma warning disable CA2255
namespace PolySharp.Tests;
internal class TestClass
{
private string? name;
// AllowNullAttribute
public void TakeValue1([AllowNull] string name)
{
}
// DisallowNullAttribute
public void TakeValue2([DisallowNull] string? name)
{
}
// DoesNotReturnAttribute
[DoesNotReturn]
public void Throws()
{
throw null!;
}
// DoesNotReturnIfAttribute
public void Throws([DoesNotReturnIf(true)] bool value)
{
}
// UnreachableException
public object Unreachable()
{
ExceptionDispatchInfo.Capture(new Exception()).Throw();
throw new UnreachableException();
}
// MaybeNullAttribute
[return: MaybeNull]
public string ModifyValue()
{
return null;
}
// MaybeNullWhenAttribute
public bool ModifyValue([MaybeNullWhen(true)] out string result)
{
result = null;
return true;
}
// MemberNotNullAttribute
[MemberNotNull(nameof(name))]
public void AssignsField()
{
this.name = "";
}
// MemberNotNullWhenAttribute
[MemberNotNullWhen(true, nameof(name))]
public bool ConditionallyAssignsField()
{
this.name = "";
return true;
}
// NotNullAttribute
public void TakeValue3([NotNull] string? value)
{
throw null!;
}
// NotNullIfNotNullAttribute
[return: NotNullIfNotNull(nameof(value))]
public string? TakeValue4(string? value)
{
return value;
}
// NotNullWhenAttribute
public bool TakeValue([NotNullWhen(true)] out string? value)
{
value = this.name ?? "";
return true;
}
[RequiresPreviewFeatures]
public void PreviewApi()
{
}
public void TakeRegex([StringSyntax(StringSyntaxAttribute.Regex)] string pattern)
{
}
[ModuleInitializer]
public static void InitializeModule()
{
}
public void RefReadonlyMethod(ref readonly int x)
{
}
[Experimental("PS0001")]
public void ExperimentalMethod()
{
}
}
internal class TestClassWithRequiredMembers
{
// SetsRequiredMembersAttribute
[SetsRequiredMembers]
#pragma warning disable IDE0290
public TestClassWithRequiredMembers()
#pragma warning restore IDE0290
{
Name = "";
}
// CompilerFeatureRequiredAttribute, RequiredMemberAttribute
public required string Name { get; init; }
}
// IsExternalInit
internal record Person(string Name);
internal readonly struct TestStruct
{
private readonly int number;
// UnscopedRefAttribute
[UnscopedRef]
public readonly ref readonly int GetRef()
{
return ref this.number;
}
}
internal static class IndexAndRangeTests
{
// Index
public static int TestIndex(ReadOnlySpan<int> numbers)
{
return numbers[^1];
}
// Range
public static ReadOnlySpan<int> TestRange(ReadOnlySpan<int> numbers)
{
return numbers[1..^4];
}
}
[CollectionBuilder(typeof(CollectionClass), nameof(Create))]
internal class CollectionClass : IEnumerable<int>
{
public static CollectionClass Test()
{
Test2(1, 2, 3);
return [1, 2, 3];
}
public static void Test2(params CollectionClass collection)
{
}
public static CollectionClass Create(ReadOnlySpan<int> values)
{
return new();
}
IEnumerator<int> IEnumerable<int>.GetEnumerator()
{
return null!;
}
IEnumerator IEnumerable.GetEnumerator()
{
return null!;
}
}
internal class AnotherTestClass
{
// CallerArgumentExpressionAttribute
public string AutomaticName(int number, [CallerArgumentExpression(nameof(number))] string name = "")
{
return name;
}
[SkipLocalsInit]
public void Stackalloc()
{
_ = stackalloc int[8];
}
public void Handler(string name, [InterpolatedStringHandlerArgument(nameof(name))] ref TestHandler handler)
{
}
}
[InterpolatedStringHandler]
internal struct TestHandler
{
}
#if !NETSTANDARD2_1
internal struct TaskLikeType
{
[AsyncMethodBuilder(typeof(CustomAsyncMethodBuilder))]
public static async TaskLikeType TestAsync()
{
await Task.Delay(1);
}
private sealed class CustomAsyncMethodBuilder
{
public static CustomAsyncMethodBuilder Create()
{
return null!;
}
public TaskLikeType Task => default;
public void SetException(Exception e)
{
}
public void SetResult()
{
}
public void SetStateMachine(IAsyncStateMachine _)
{
}
public void AwaitOnCompleted<TAwaiter, TStateMachine>(
ref TAwaiter awaiter, ref TStateMachine stateMachine)
where TAwaiter : INotifyCompletion
where TStateMachine : IAsyncStateMachine
{
}
public void AwaitUnsafeOnCompleted<TAwaiter, TStateMachine>(
ref TAwaiter awaiter, ref TStateMachine stateMachine)
where TAwaiter : ICriticalNotifyCompletion
where TStateMachine : IAsyncStateMachine
{
}
public void Start<TStateMachine>(ref TStateMachine stateMachine)
where TStateMachine : IAsyncStateMachine
{
}
}
}
#endif
internal static class OverloadResolutionPriorityTests
{
public static void Test()
{
TestOverload(1);
}
[Obsolete("Do not use", error: true)]
[OverloadResolutionPriority(-1)]
public static void TestOverload(int x)
{
}
public static void TestOverload(int x, int y = 0)
{
}
}
internal static class ConstantExpectedTests
{
public static void CpuIntrinsic([ConstantExpected] int value)
{
}
public static void AnotherCpuIntrinsic([ConstantExpected(Min = 0, Max = 8)] int value)
{
}
}