C#: Add some more collection and spread element expression kinds to the dbscheme.

This commit is contained in:
Michael Nebel
2024-01-24 15:17:35 +01:00
parent 863e6c8009
commit 1ef8daf7cd
2 changed files with 5 additions and 0 deletions

View File

@@ -130,6 +130,8 @@ namespace Semmle.Extraction.Kinds
URSHIFT = 133,
ASSIGN_URSHIFT = 134,
UTF8_STRING_LITERAL = 135,
COLLECTION = 136,
SPREAD_ELEMENT = 137,
DEFINE_SYMBOL = 999,
}
}

View File

@@ -1148,6 +1148,9 @@ case @expr.kind of
| 133 = @urshift_expr
| 134 = @assign_urshift_expr
| 135 = @utf8_string_literal_expr
/* C# 12.0 */
| 136 = @collection_expr
| 137 = @spread_element_expr
/* Preprocessor */
| 999 = @define_symbol_expr
;