File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -1215,6 +1215,13 @@ internal CallSite() { }
1215
1215
[ System . Diagnostics . CodeAnalysis . RequiresDynamicCodeAttribute ( "Creating arrays at runtime requires dynamic code generation." ) ]
1216
1216
public static System . Runtime . CompilerServices . CallSite < T > Create ( System . Runtime . CompilerServices . CallSiteBinder binder ) { throw null ; }
1217
1217
}
1218
+ [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
1219
+ public sealed partial class Closure
1220
+ {
1221
+ public readonly object [ ] Constants ;
1222
+ public readonly object [ ] ? Locals ;
1223
+ public Closure ( object [ ] constants , object [ ] ? locals ) { }
1224
+ }
1218
1225
public abstract partial class DebugInfoGenerator
1219
1226
{
1220
1227
protected DebugInfoGenerator ( ) { }
Original file line number Diff line number Diff line change 9
9
<DiagnosticId >CP0001</DiagnosticId >
10
10
<Target >T:System.Runtime.CompilerServices.CallSiteOps</Target >
11
11
</Suppression >
12
- <Suppression >
13
- <DiagnosticId >CP0001</DiagnosticId >
14
- <Target >T:System.Runtime.CompilerServices.Closure</Target >
15
- </Suppression >
16
12
<Suppression >
17
13
<DiagnosticId >CP0001</DiagnosticId >
18
14
<Target >T:System.Runtime.CompilerServices.RuntimeOps</Target >
Original file line number Diff line number Diff line change 184
184
[ assembly: System . Runtime . CompilerServices . TypeForwardedTo ( typeof ( System . Runtime . CompilerServices . CallSite < > ) ) ]
185
185
[ assembly: System . Runtime . CompilerServices . TypeForwardedTo ( typeof ( System . Runtime . CompilerServices . CallSiteBinder ) ) ]
186
186
[ assembly: System . Runtime . CompilerServices . TypeForwardedTo ( typeof ( System . Runtime . CompilerServices . CallSiteHelpers ) ) ]
187
+ [ assembly: System . Runtime . CompilerServices . TypeForwardedTo ( typeof ( System . Runtime . CompilerServices . Closure ) ) ]
187
188
[ assembly: System . Runtime . CompilerServices . TypeForwardedTo ( typeof ( System . Runtime . CompilerServices . DebugInfoGenerator ) ) ]
188
189
[ assembly: System . Runtime . CompilerServices . TypeForwardedTo ( typeof ( System . Runtime . CompilerServices . DynamicAttribute ) ) ]
189
190
[ assembly: System . Runtime . CompilerServices . TypeForwardedTo ( typeof ( System . Runtime . CompilerServices . ExtensionAttribute ) ) ]
You can’t perform that action at this time.
0 commit comments