Skip to content

Commit

Permalink
Fix test0391 - typeBinding getQualifiedName for arrays
Browse files Browse the repository at this point in the history
Signed-off-by: Rob Stryker <[email protected]>
  • Loading branch information
Rob Stryker committed May 30, 2024
1 parent 3bc744c commit aa96a3e
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -436,6 +436,10 @@ public String getQualifiedName() {
if (this.type instanceof NullType) {
return "null";
}
if (this.type instanceof ArrayType at) {
return at.elemtype.tsym.getQualifiedName().toString() + "[]";
}

return this.typeSymbol.getQualifiedName().toString();
}

Expand Down

0 comments on commit aa96a3e

Please sign in to comment.