Fix formatting mistake

This commit is contained in:
Chris Smowton
2023-09-15 12:37:34 +01:00
parent 24dc09efad
commit e62fcf9a45

View File

@@ -1247,7 +1247,8 @@ class ClassInstanceExpr extends Expr, ConstructorCall, @classinstancexpr {
override string toString() {
result = "new " + this.getConstructor().getName() + "(...)"
or
not exists(this.getConstructor()) and result = "<ClassInstanceExpr that calls a missing constructor>"
not exists(this.getConstructor()) and
result = "<ClassInstanceExpr that calls a missing constructor>"
}
override string getAPrimaryQlClass() { result = "ClassInstanceExpr" }