@@ -1115,7 +1115,8 @@ private module Internal {
11151115
11161116 /** A call using reflection. */
11171117 private class DispatchReflectionCall extends DispatchReflectionOrDynamicCall ,
1118- TDispatchReflectionCall {
1118+ TDispatchReflectionCall
1119+ {
11191120 override MethodCall getCall ( ) { this = TDispatchReflectionCall ( result , _, _, _, _) }
11201121
11211122 override string getName ( ) { this = TDispatchReflectionCall ( _, result , _, _, _) }
@@ -1163,7 +1164,8 @@ private module Internal {
11631164
11641165 /** A method call using dynamic types. */
11651166 private class DispatchDynamicMethodCall extends DispatchReflectionOrDynamicCall ,
1166- TDispatchDynamicMethodCall {
1167+ TDispatchDynamicMethodCall
1168+ {
11671169 override DynamicMethodCall getCall ( ) { this = TDispatchDynamicMethodCall ( result ) }
11681170
11691171 override string getName ( ) { result = this .getCall ( ) .getLateBoundTargetName ( ) }
@@ -1184,7 +1186,8 @@ private module Internal {
11841186
11851187 /** An operator call using dynamic types. */
11861188 private class DispatchDynamicOperatorCall extends DispatchReflectionOrDynamicCall ,
1187- TDispatchDynamicOperatorCall {
1189+ TDispatchDynamicOperatorCall
1190+ {
11881191 override DynamicOperatorCall getCall ( ) { this = TDispatchDynamicOperatorCall ( result ) }
11891192
11901193 override string getName ( ) {
@@ -1201,7 +1204,8 @@ private module Internal {
12011204
12021205 /** A (potential) call to a property accessor using dynamic types. */
12031206 private class DispatchDynamicMemberAccess extends DispatchReflectionOrDynamicCall ,
1204- TDispatchDynamicMemberAccess {
1207+ TDispatchDynamicMemberAccess
1208+ {
12051209 override DynamicMemberAccess getCall ( ) { this = TDispatchDynamicMemberAccess ( result ) }
12061210
12071211 override string getName ( ) {
@@ -1225,7 +1229,8 @@ private module Internal {
12251229
12261230 /** A (potential) call to an indexer accessor using dynamic types. */
12271231 private class DispatchDynamicElementAccess extends DispatchReflectionOrDynamicCall ,
1228- TDispatchDynamicElementAccess {
1232+ TDispatchDynamicElementAccess
1233+ {
12291234 override DynamicElementAccess getCall ( ) { this = TDispatchDynamicElementAccess ( result ) }
12301235
12311236 override string getName ( ) {
@@ -1251,7 +1256,8 @@ private module Internal {
12511256
12521257 /** A (potential) call to an event accessor using dynamic types. */
12531258 private class DispatchDynamicEventAccess extends DispatchReflectionOrDynamicCall ,
1254- TDispatchDynamicEventAccess {
1259+ TDispatchDynamicEventAccess
1260+ {
12551261 override AssignArithmeticOperation getCall ( ) {
12561262 this = TDispatchDynamicEventAccess ( result , _, _)
12571263 }
@@ -1268,7 +1274,8 @@ private module Internal {
12681274
12691275 /** A call to a constructor using dynamic types. */
12701276 private class DispatchDynamicObjectCreation extends DispatchReflectionOrDynamicCall ,
1271- TDispatchDynamicObjectCreation {
1277+ TDispatchDynamicObjectCreation
1278+ {
12721279 override DynamicObjectCreation getCall ( ) { this = TDispatchDynamicObjectCreation ( result ) }
12731280
12741281 override string getName ( ) { none ( ) }
0 commit comments