-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into aeisenberg/autofix-reminder
- Loading branch information
Showing
400 changed files
with
92,316 additions
and
5,683 deletions.
There are no files selected for viewing
2,296 changes: 2,296 additions & 0 deletions
2,296
cpp/downgrades/25e365d1e8147df0f759b604f96eb4bffea48271/old.dbscheme
Large diffs are not rendered by default.
Oops, something went wrong.
2,289 changes: 2,289 additions & 0 deletions
2,289
cpp/downgrades/25e365d1e8147df0f759b604f96eb4bffea48271/semmlecode.cpp.dbscheme
Large diffs are not rendered by default.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
cpp/downgrades/25e365d1e8147df0f759b604f96eb4bffea48271/upgrade.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
description: Revert support for using-enum declarations. | ||
compatibility: partial | ||
usings.rel: run usings.qlo | ||
using_container.rel: run using_container.qlo |
14 changes: 14 additions & 0 deletions
14
cpp/downgrades/25e365d1e8147df0f759b604f96eb4bffea48271/using_container.ql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
class UsingEntry extends @using { | ||
string toString() { none() } | ||
} | ||
|
||
class Element extends @element { | ||
string toString() { none() } | ||
} | ||
|
||
from UsingEntry u, Element parent, int kind | ||
where | ||
usings(u, _, _, kind) and | ||
using_container(parent, u) and | ||
kind != 3 | ||
select parent, u |
17 changes: 17 additions & 0 deletions
17
cpp/downgrades/25e365d1e8147df0f759b604f96eb4bffea48271/usings.ql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
class UsingEntry extends @using { | ||
string toString() { none() } | ||
} | ||
|
||
class Element extends @element { | ||
string toString() { none() } | ||
} | ||
|
||
class Location extends @location_default { | ||
string toString() { none() } | ||
} | ||
|
||
from UsingEntry u, Element target, Location loc, int kind | ||
where | ||
usings(u, target, loc, kind) and | ||
kind != 3 | ||
select u, target, loc |
Oops, something went wrong.