autoformat file

This commit is contained in:
Jeff Gran
2021-12-22 08:44:35 -07:00
parent 6acb87d542
commit accfd482d4

View File

@@ -202,17 +202,13 @@ class ConstantWriteAccess extends ConstantAccess {
* constants up the namespace chain, the fully qualified name of a nested
* constant can be ambiguous from just statically looking at the AST.
*/
string getAQualifiedName() {
result = resolveConstantWriteAccess(this)
}
string getAQualifiedName() { result = resolveConstantWriteAccess(this) }
/**
* Gets a qualified name for this constant. Deprecated in favor of
* `getAQualifiedName` because this can return more than one value
*/
deprecated string getQualifiedName() {
result = this.getAQualifiedName()
}
deprecated string getQualifiedName() { result = this.getAQualifiedName() }
}
/**