CPP/Java: Fix getAPrimaryQlClass implementations

This commit is contained in:
Erik Krogh Kristensen
2021-05-27 21:36:27 +02:00
parent ab73b10869
commit 79989cc3f4
2 changed files with 2 additions and 2 deletions

View File

@@ -739,7 +739,7 @@ class LabeledStmt extends Stmt, @labeledstmt {
/** This statement's Halstead ID (used to compute Halstead metrics). */
override string getHalsteadID() { result = this.getLabel() + ":" }
override string getAPrimaryQlClass() { result = "LabelStmt" }
override string getAPrimaryQlClass() { result = "LabeledStmt" }
}
/** An `assert` statement. */