make the ApiLabel class non-abstract

This commit is contained in:
Erik Krogh Kristensen
2021-12-01 13:45:52 +01:00
parent c13cad7e87
commit 148da611c6

View File

@@ -1006,7 +1006,7 @@ module API {
/** Provides classes modeling the various edges (labels) in the API graph. */
module Label {
/** A label in the API-graph */
abstract class ApiLabel extends TLabel {
class ApiLabel extends TLabel {
/** Gets a string representation of this label. */
string toString() { result = "???" }
}