mirror of
https://github.com/github/codeql.git
synced 2026-04-25 16:55:19 +02:00
Python: Fix missing override compilation error
This commit is contained in:
@@ -222,7 +222,10 @@ class StringList extends StringList_ { }
|
||||
class AliasList extends AliasList_ { }
|
||||
|
||||
/** A generic type parameter, as seen in function, class, and type alias definitions. */
|
||||
class TypeParameter extends TypeParameter_ { }
|
||||
class TypeParameter extends TypeParameter_ {
|
||||
/** Gets a textual representation of this element */
|
||||
override string toString() { result = TypeParameter_.super.toString() }
|
||||
}
|
||||
|
||||
/** A list of type parameters */
|
||||
class TypeParameterList extends TypeParameterList_ { }
|
||||
|
||||
Reference in New Issue
Block a user