File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
- namespace Semmle . Extraction . Kinds // lgtm[cs/similar-file]
1
+ namespace Semmle . Extraction . Kinds
2
2
{
3
3
/// <summary>
4
4
/// This enum has been auto-generated from the C# DB scheme - do not edit.
5
+ /// Auto-generate command: `genkindenum.pl type`
5
6
/// </summary>
6
7
public enum TypeKind
7
8
{
@@ -35,6 +36,7 @@ public enum TypeKind
35
36
ARGLIST = 30 ,
36
37
UNKNOWN = 31 ,
37
38
TUPLE = 32 ,
38
- FUNCTION_POINTER = 33
39
+ FUNCTION_POINTER = 33 ,
40
+ INLINE_ARRAY = 34 ,
39
41
}
40
42
}
Original file line number Diff line number Diff line change @@ -448,6 +448,7 @@ case @type.kind of
448
448
| 31 = @unknown_type
449
449
| 32 = @tuple_type
450
450
| 33 = @function_pointer_type
451
+ | 34 = @inline_array_type
451
452
;
452
453
453
454
@simple_type = @bool_type | @char_type | @integral_type | @floating_point_type | @decimal_type;
@@ -456,7 +457,7 @@ case @type.kind of
456
457
@unsigned_integral_type = @byte_type | @ushort_type | @uint_type | @ulong_type;
457
458
@floating_point_type = @float_type | @double_type;
458
459
@value_type = @simple_type | @enum_type | @struct_type | @nullable_type | @int_ptr_type
459
- | @uint_ptr_type | @tuple_type | @void_type;
460
+ | @uint_ptr_type | @tuple_type | @void_type | @inline_array_type ;
460
461
@ref_type = @class_type | @interface_type | @array_type | @delegate_type | @null_type
461
462
| @dynamic_type;
462
463
@value_or_ref_type = @value_type | @ref_type;
You can’t perform that action at this time.
0 commit comments