Skip to content

Commit 07d82e8

Browse files
committed
C#: Remove the accessor invocation expr from the DB scheme.
1 parent 723b303 commit 07d82e8

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

csharp/ql/lib/semmlecode.csharp.dbscheme

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1198,8 +1198,6 @@ case @expr.kind of
11981198
| 136 = @collection_expr
11991199
| 137 = @spread_element_expr
12001200
| 138 = @interpolated_string_insert_expr
1201-
/* C# 14.0 */
1202-
| 139 = @accessor_invocation_expr
12031201
/* Preprocessor */
12041202
| 999 = @define_symbol_expr
12051203
;
@@ -1274,9 +1272,9 @@ case @expr.kind of
12741272

12751273
@call = @method_invocation_expr | @constructor_init_expr | @operator_invocation_expr
12761274
| @delegate_invocation_expr | @object_creation_expr | @call_access_expr
1277-
| @local_function_invocation_expr | @function_pointer_invocation_expr | @accessor_invocation_expr;
1275+
| @local_function_invocation_expr | @function_pointer_invocation_expr;
12781276

1279-
@call_access_expr = @property_access_expr | @event_access_expr | @indexer_access_expr | @accessor_invocation_expr;
1277+
@call_access_expr = @property_access_expr | @event_access_expr | @indexer_access_expr;
12801278

12811279
@late_bindable_expr = @dynamic_element_access_expr | @dynamic_member_access_expr
12821280
| @object_creation_expr | @method_invocation_expr | @operator_invocation_expr;
@@ -1325,8 +1323,7 @@ dynamic_member_name(
13251323

13261324
@qualifiable_expr = @member_access_expr
13271325
| @method_invocation_expr
1328-
| @element_access_expr
1329-
| @accessor_invocation_expr;
1326+
| @element_access_expr;
13301327

13311328
conditional_access(
13321329
unique int id: @qualifiable_expr ref);

0 commit comments

Comments
 (0)