Skip to content

Commit

Permalink
Merge branch 'main' into aeisenberg/autofix-reminder
Browse files Browse the repository at this point in the history
  • Loading branch information
aeisenberg authored Jul 29, 2024
2 parents 3022cf6 + 46b92f3 commit c0c71b3
Show file tree
Hide file tree
Showing 400 changed files with 92,316 additions and 5,683 deletions.
2,296 changes: 2,296 additions & 0 deletions cpp/downgrades/25e365d1e8147df0f759b604f96eb4bffea48271/old.dbscheme

Large diffs are not rendered by default.

2,289 changes: 2,289 additions & 0 deletions cpp/downgrades/25e365d1e8147df0f759b604f96eb4bffea48271/semmlecode.cpp.dbscheme

Large diffs are not rendered by default.

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
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 cpp/downgrades/25e365d1e8147df0f759b604f96eb4bffea48271/usings.ql
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
Loading

0 comments on commit c0c71b3

Please sign in to comment.