Skip to content

Commit b4f7e07

Browse files
committed
C#: Update .NET Core stubs.
1 parent 0c58764 commit b4f7e07

File tree

67 files changed

+5465
-5462
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+5465
-5462
lines changed

csharp/ql/test/resources/stubs/_frameworks/Microsoft.NETCore.App/Microsoft.CSharp.cs

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -30,31 +30,31 @@ public class CSharpArgumentInfo
3030

3131
// Generated from `Microsoft.CSharp.RuntimeBinder.CSharpArgumentInfoFlags` in `Microsoft.CSharp, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a`
3232
[System.Flags]
33-
public enum CSharpArgumentInfoFlags
33+
public enum CSharpArgumentInfoFlags : int
3434
{
35-
Constant,
36-
IsOut,
37-
IsRef,
38-
IsStaticType,
39-
NamedArgument,
40-
None,
41-
UseCompileTimeType,
35+
Constant = 2,
36+
IsOut = 16,
37+
IsRef = 8,
38+
IsStaticType = 32,
39+
NamedArgument = 4,
40+
None = 0,
41+
UseCompileTimeType = 1,
4242
}
4343

4444
// Generated from `Microsoft.CSharp.RuntimeBinder.CSharpBinderFlags` in `Microsoft.CSharp, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a`
4545
[System.Flags]
46-
public enum CSharpBinderFlags
46+
public enum CSharpBinderFlags : int
4747
{
48-
BinaryOperationLogical,
49-
CheckedContext,
50-
ConvertArrayIndex,
51-
ConvertExplicit,
52-
InvokeSimpleName,
53-
InvokeSpecialName,
54-
None,
55-
ResultDiscarded,
56-
ResultIndexed,
57-
ValueFromCompoundAssignment,
48+
BinaryOperationLogical = 8,
49+
CheckedContext = 1,
50+
ConvertArrayIndex = 32,
51+
ConvertExplicit = 16,
52+
InvokeSimpleName = 2,
53+
InvokeSpecialName = 4,
54+
None = 0,
55+
ResultDiscarded = 256,
56+
ResultIndexed = 64,
57+
ValueFromCompoundAssignment = 128,
5858
}
5959

6060
// Generated from `Microsoft.CSharp.RuntimeBinder.RuntimeBinderException` in `Microsoft.CSharp, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a`

0 commit comments

Comments
 (0)