@@ -16,7 +16,6 @@ public static class Keywords
16
16
public const EventKeywords Rules = ( EventKeywords ) 0x10 ;
17
17
}
18
18
19
- [ JetBrains . Annotations . NotNull ]
20
19
public static readonly EventSource Log = new EventSource ( ) ;
21
20
22
21
EventSource ( ) { }
@@ -39,8 +38,8 @@ public static class Keywords
39
38
public void MissingConvertFunction (
40
39
string callback ,
41
40
string errorStrategy ,
42
- [ CallerMemberName ] string memberName = null ,
43
- [ CallerFilePath ] string sourceFilePath = null ,
41
+ [ CallerMemberName ] string ? memberName = null ,
42
+ [ CallerFilePath ] string ? sourceFilePath = null ,
44
43
[ CallerLineNumber ] int sourceLineNumber = 0 )
45
44
=>
46
45
WriteEvent (
@@ -69,8 +68,8 @@ public void MissingConvertFunction(
69
68
public void MissingConvertBackFunction (
70
69
string callback ,
71
70
string errorStrategy ,
72
- [ CallerMemberName ] string memberName = null ,
73
- [ CallerFilePath ] string sourceFilePath = null ,
71
+ [ CallerMemberName ] string ? memberName = null ,
72
+ [ CallerFilePath ] string ? sourceFilePath = null ,
74
73
[ CallerLineNumber ] int sourceLineNumber = 0 )
75
74
=>
76
75
WriteEvent (
@@ -100,8 +99,8 @@ public void NonAssignableTargetType(
100
99
string targetType ,
101
100
string outputType ,
102
101
string errorStrategy ,
103
- [ CallerMemberName ] string memberName = null ,
104
- [ CallerFilePath ] string sourceFilePath = null ,
102
+ [ CallerMemberName ] string ? memberName = null ,
103
+ [ CallerFilePath ] string ? sourceFilePath = null ,
105
104
[ CallerLineNumber ] int sourceLineNumber = 0 )
106
105
=>
107
106
WriteEvent (
@@ -132,8 +131,8 @@ public void NonAssignableTargetTypeForBackConversion(
132
131
string targetType ,
133
132
string inputType ,
134
133
string errorStrategy ,
135
- [ CallerMemberName ] string memberName = null ,
136
- [ CallerFilePath ] string sourceFilePath = null ,
134
+ [ CallerMemberName ] string ? memberName = null ,
135
+ [ CallerFilePath ] string ? sourceFilePath = null ,
137
136
[ CallerLineNumber ] int sourceLineNumber = 0 )
138
137
=>
139
138
WriteEvent (
@@ -165,8 +164,8 @@ public void NonAssignableTargetTypeAtPositionForBackConversion(
165
164
int position ,
166
165
string inputType ,
167
166
string errorStrategy ,
168
- [ CallerMemberName ] string memberName = null ,
169
- [ CallerFilePath ] string sourceFilePath = null ,
167
+ [ CallerMemberName ] string ? memberName = null ,
168
+ [ CallerFilePath ] string ? sourceFilePath = null ,
170
169
[ CallerLineNumber ] int sourceLineNumber = 0 )
171
170
=>
172
171
WriteEvent (
@@ -196,8 +195,8 @@ public void NonAssignableTargetTypeAtPositionForBackConversion(
196
195
) ]
197
196
public void NullValues (
198
197
string errorStrategy ,
199
- [ CallerMemberName ] string memberName = null ,
200
- [ CallerFilePath ] string sourceFilePath = null ,
198
+ [ CallerMemberName ] string ? memberName = null ,
199
+ [ CallerFilePath ] string ? sourceFilePath = null ,
201
200
[ CallerLineNumber ] int sourceLineNumber = 0 )
202
201
=>
203
202
WriteEvent (
@@ -223,8 +222,8 @@ public void NullValues(
223
222
#endif
224
223
) ]
225
224
public void NonRequestedTargetType (
226
- [ CallerMemberName ] string memberName = null ,
227
- [ CallerFilePath ] string sourceFilePath = null ,
225
+ [ CallerMemberName ] string ? memberName = null ,
226
+ [ CallerFilePath ] string ? sourceFilePath = null ,
228
227
[ CallerLineNumber ] int sourceLineNumber = 0 )
229
228
=>
230
229
WriteEvent (
@@ -250,8 +249,8 @@ public void NonRequestedTargetType(
250
249
) ]
251
250
public void NonRequestedTargetTypeAtPosition (
252
251
int position ,
253
- [ CallerMemberName ] string memberName = null ,
254
- [ CallerFilePath ] string sourceFilePath = null ,
252
+ [ CallerMemberName ] string ? memberName = null ,
253
+ [ CallerFilePath ] string ? sourceFilePath = null ,
255
254
[ CallerLineNumber ] int sourceLineNumber = 0 )
256
255
=>
257
256
WriteEvent (
@@ -279,8 +278,8 @@ public void NonRequestedTargetTypeAtPosition(
279
278
public void ParameterInParameterlessConverter (
280
279
string objectType ,
281
280
string errorStrategy ,
282
- [ CallerMemberName ] string memberName = null ,
283
- [ CallerFilePath ] string sourceFilePath = null ,
281
+ [ CallerMemberName ] string ? memberName = null ,
282
+ [ CallerFilePath ] string ? sourceFilePath = null ,
284
283
[ CallerLineNumber ] int sourceLineNumber = 0 )
285
284
=>
286
285
WriteEvent (
@@ -309,8 +308,8 @@ public void ParameterInParameterlessConverter(
309
308
public void ParameterInParameterlessConverterForBackConversion (
310
309
string objectType ,
311
310
string errorStrategy ,
312
- [ CallerMemberName ] string memberName = null ,
313
- [ CallerFilePath ] string sourceFilePath = null ,
311
+ [ CallerMemberName ] string ? memberName = null ,
312
+ [ CallerFilePath ] string ? sourceFilePath = null ,
314
313
[ CallerLineNumber ] int sourceLineNumber = 0 )
315
314
=>
316
315
WriteEvent (
@@ -340,8 +339,8 @@ public void UnableToCastToInputType(
340
339
string objectType ,
341
340
string inputType ,
342
341
string errorStrategy ,
343
- [ CallerMemberName ] string memberName = null ,
344
- [ CallerFilePath ] string sourceFilePath = null ,
342
+ [ CallerMemberName ] string ? memberName = null ,
343
+ [ CallerFilePath ] string ? sourceFilePath = null ,
345
344
[ CallerLineNumber ] int sourceLineNumber = 0 )
346
345
=>
347
346
WriteEvent (
@@ -373,8 +372,8 @@ public void UnableToCastAtPositionToInputType(
373
372
int position ,
374
373
string inputType ,
375
374
string errorStrategy ,
376
- [ CallerMemberName ] string memberName = null ,
377
- [ CallerFilePath ] string sourceFilePath = null ,
375
+ [ CallerMemberName ] string ? memberName = null ,
376
+ [ CallerFilePath ] string ? sourceFilePath = null ,
378
377
[ CallerLineNumber ] int sourceLineNumber = 0 )
379
378
=>
380
379
WriteEvent (
@@ -406,8 +405,8 @@ public void UnableToCastToOutputType(
406
405
string objectType ,
407
406
string outputType ,
408
407
string errorStrategy ,
409
- [ CallerMemberName ] string memberName = null ,
410
- [ CallerFilePath ] string sourceFilePath = null ,
408
+ [ CallerMemberName ] string ? memberName = null ,
409
+ [ CallerFilePath ] string ? sourceFilePath = null ,
411
410
[ CallerLineNumber ] int sourceLineNumber = 0 )
412
411
=>
413
412
WriteEvent (
@@ -438,8 +437,8 @@ public void UnableToCastToParameterType(
438
437
string objectType ,
439
438
string parameter ,
440
439
string errorStrategy ,
441
- [ CallerMemberName ] string memberName = null ,
442
- [ CallerFilePath ] string sourceFilePath = null ,
440
+ [ CallerMemberName ] string ? memberName = null ,
441
+ [ CallerFilePath ] string ? sourceFilePath = null ,
443
442
[ CallerLineNumber ] int sourceLineNumber = 0 )
444
443
=>
445
444
WriteEvent (
@@ -470,8 +469,8 @@ public void UnableToCastToParameterTypeForBackConversion(
470
469
string objectType ,
471
470
string parameter ,
472
471
string errorStrategy ,
473
- [ CallerMemberName ] string memberName = null ,
474
- [ CallerFilePath ] string sourceFilePath = null ,
472
+ [ CallerMemberName ] string ? memberName = null ,
473
+ [ CallerFilePath ] string ? sourceFilePath = null ,
475
474
[ CallerLineNumber ] int sourceLineNumber = 0 )
476
475
=>
477
476
WriteEvent (
@@ -501,8 +500,8 @@ public void UnableToCastToParameterTypeForBackConversion(
501
500
public void MissingSelectTemplateFunction (
502
501
string callback ,
503
502
string errorStrategy ,
504
- [ CallerMemberName ] string memberName = null ,
505
- [ CallerFilePath ] string sourceFilePath = null ,
503
+ [ CallerMemberName ] string ? memberName = null ,
504
+ [ CallerFilePath ] string ? sourceFilePath = null ,
506
505
[ CallerLineNumber ] int sourceLineNumber = 0 )
507
506
=>
508
507
WriteEvent (
@@ -532,8 +531,8 @@ public void UnableToCastToItemType(
532
531
string itemType ,
533
532
string inputType ,
534
533
string errorStrategy ,
535
- [ CallerMemberName ] string memberName = null ,
536
- [ CallerFilePath ] string sourceFilePath = null ,
534
+ [ CallerMemberName ] string ? memberName = null ,
535
+ [ CallerFilePath ] string ? sourceFilePath = null ,
537
536
[ CallerLineNumber ] int sourceLineNumber = 0 )
538
537
=>
539
538
WriteEvent (
@@ -563,8 +562,8 @@ public void UnableToCastToItemType(
563
562
public void MissingRuleFunction (
564
563
string callback ,
565
564
string errorStrategy ,
566
- [ CallerMemberName ] string memberName = null ,
567
- [ CallerFilePath ] string sourceFilePath = null ,
565
+ [ CallerMemberName ] string ? memberName = null ,
566
+ [ CallerFilePath ] string ? sourceFilePath = null ,
568
567
[ CallerLineNumber ] int sourceLineNumber = 0 )
569
568
=>
570
569
WriteEvent (
@@ -594,8 +593,8 @@ public void UnableToCastToRuleInputType(
594
593
string itemType ,
595
594
string inputType ,
596
595
string errorStrategy ,
597
- [ CallerMemberName ] string memberName = null ,
598
- [ CallerFilePath ] string sourceFilePath = null ,
596
+ [ CallerMemberName ] string ? memberName = null ,
597
+ [ CallerFilePath ] string ? sourceFilePath = null ,
599
598
[ CallerLineNumber ] int sourceLineNumber = 0 )
600
599
=>
601
600
WriteEvent (
0 commit comments