Skip to content

Commit 20b0969

Browse files
committed
Swift: Restore original Type.toString() behaviour.
1 parent beacade commit 20b0969

File tree

1 file changed

+1
-1
lines changed
  • swift/ql/lib/codeql/swift/elements/type

1 file changed

+1
-1
lines changed

swift/ql/lib/codeql/swift/elements/type/Type.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ private import codeql.swift.generated.type.Type
66
* This QL class is the root of the Swift type hierarchy.
77
*/
88
class Type extends Generated::Type {
9-
override string toString() { result = this.getName() }
9+
override string toString() { result = this.getFullName() }
1010

1111
/**
1212
* Gets the name of this type.

0 commit comments

Comments
 (0)