Skip to content

Commit dec0c3a

Browse files
committed
C#/C++/Java: Make AccessPath abstract
This was requested by @hvitved in code review. There is no difference in the generated DIL.
1 parent b1be123 commit dec0c3a

File tree

19 files changed

+19
-19
lines changed

19 files changed

+19
-19
lines changed

cpp/ql/src/semmle/code/cpp/dataflow/internal/DataFlowImpl.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1227,7 +1227,7 @@ private newtype TAccessPath =
12271227
* dereference operations needed to get from the value in the node to the
12281228
* tracked object. The final type indicates the type of the tracked object.
12291229
*/
1230-
private class AccessPath extends TAccessPath {
1230+
abstract private class AccessPath extends TAccessPath {
12311231
abstract string toString();
12321232

12331233
Content getHead() {

cpp/ql/src/semmle/code/cpp/dataflow/internal/DataFlowImpl2.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1227,7 +1227,7 @@ private newtype TAccessPath =
12271227
* dereference operations needed to get from the value in the node to the
12281228
* tracked object. The final type indicates the type of the tracked object.
12291229
*/
1230-
private class AccessPath extends TAccessPath {
1230+
abstract private class AccessPath extends TAccessPath {
12311231
abstract string toString();
12321232

12331233
Content getHead() {

cpp/ql/src/semmle/code/cpp/dataflow/internal/DataFlowImpl3.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1227,7 +1227,7 @@ private newtype TAccessPath =
12271227
* dereference operations needed to get from the value in the node to the
12281228
* tracked object. The final type indicates the type of the tracked object.
12291229
*/
1230-
private class AccessPath extends TAccessPath {
1230+
abstract private class AccessPath extends TAccessPath {
12311231
abstract string toString();
12321232

12331233
Content getHead() {

cpp/ql/src/semmle/code/cpp/dataflow/internal/DataFlowImpl4.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1227,7 +1227,7 @@ private newtype TAccessPath =
12271227
* dereference operations needed to get from the value in the node to the
12281228
* tracked object. The final type indicates the type of the tracked object.
12291229
*/
1230-
private class AccessPath extends TAccessPath {
1230+
abstract private class AccessPath extends TAccessPath {
12311231
abstract string toString();
12321232

12331233
Content getHead() {

cpp/ql/src/semmle/code/cpp/dataflow/internal/DataFlowImplLocal.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1227,7 +1227,7 @@ private newtype TAccessPath =
12271227
* dereference operations needed to get from the value in the node to the
12281228
* tracked object. The final type indicates the type of the tracked object.
12291229
*/
1230-
private class AccessPath extends TAccessPath {
1230+
abstract private class AccessPath extends TAccessPath {
12311231
abstract string toString();
12321232

12331233
Content getHead() {

cpp/ql/src/semmle/code/cpp/ir/dataflow/internal/DataFlowImpl.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1227,7 +1227,7 @@ private newtype TAccessPath =
12271227
* dereference operations needed to get from the value in the node to the
12281228
* tracked object. The final type indicates the type of the tracked object.
12291229
*/
1230-
private class AccessPath extends TAccessPath {
1230+
abstract private class AccessPath extends TAccessPath {
12311231
abstract string toString();
12321232

12331233
Content getHead() {

cpp/ql/src/semmle/code/cpp/ir/dataflow/internal/DataFlowImpl2.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1227,7 +1227,7 @@ private newtype TAccessPath =
12271227
* dereference operations needed to get from the value in the node to the
12281228
* tracked object. The final type indicates the type of the tracked object.
12291229
*/
1230-
private class AccessPath extends TAccessPath {
1230+
abstract private class AccessPath extends TAccessPath {
12311231
abstract string toString();
12321232

12331233
Content getHead() {

cpp/ql/src/semmle/code/cpp/ir/dataflow/internal/DataFlowImpl3.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1227,7 +1227,7 @@ private newtype TAccessPath =
12271227
* dereference operations needed to get from the value in the node to the
12281228
* tracked object. The final type indicates the type of the tracked object.
12291229
*/
1230-
private class AccessPath extends TAccessPath {
1230+
abstract private class AccessPath extends TAccessPath {
12311231
abstract string toString();
12321232

12331233
Content getHead() {

cpp/ql/src/semmle/code/cpp/ir/dataflow/internal/DataFlowImpl4.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1227,7 +1227,7 @@ private newtype TAccessPath =
12271227
* dereference operations needed to get from the value in the node to the
12281228
* tracked object. The final type indicates the type of the tracked object.
12291229
*/
1230-
private class AccessPath extends TAccessPath {
1230+
abstract private class AccessPath extends TAccessPath {
12311231
abstract string toString();
12321232

12331233
Content getHead() {

csharp/ql/src/semmle/code/csharp/dataflow/internal/DataFlowImpl.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1227,7 +1227,7 @@ private newtype TAccessPath =
12271227
* dereference operations needed to get from the value in the node to the
12281228
* tracked object. The final type indicates the type of the tracked object.
12291229
*/
1230-
private class AccessPath extends TAccessPath {
1230+
abstract private class AccessPath extends TAccessPath {
12311231
abstract string toString();
12321232

12331233
Content getHead() {

0 commit comments

Comments
 (0)