Skip to content

Commit e98728b

Browse files
committed
Swift: Fix casing on import alias.
1 parent 83bcb53 commit e98728b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

swift/ql/lib/codeql/swift/controlflow/internal/ControlFlowGraphImplSpecific.qll

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
private import swift as s
1+
private import swift as S
22
private import ControlFlowGraphImpl as Impl
33
private import Completion as Comp
44
private import codeql.swift.controlflow.ControlFlowGraph as CFG
55
private import Splitting as Splitting
66

77
/** The base class for `ControlFlowTree`. */
8-
class ControlFlowTreeBase extends s::AstNode { }
8+
class ControlFlowTreeBase extends S::AstNode { }
99

10-
class ControlFlowElement = s::AstNode;
10+
class ControlFlowElement = S::AstNode;
1111

1212
class Completion = Comp::Completion;
1313

@@ -63,6 +63,6 @@ predicate successorTypeIsSimple(SuccessorType t) {
6363
/** Holds if `t` is an abnormal exit type out of a CFG scope. */
6464
predicate isAbnormalExitType(SuccessorType t) { none() } // TODO
6565

66-
class Location = s::Location;
66+
class Location = S::Location;
6767

6868
class Node = CFG::ControlFlowNode;

0 commit comments

Comments
 (0)