Skip to content

Commit

Permalink
EQL: return unresolved arguments to concat early
Browse files Browse the repository at this point in the history
  • Loading branch information
rw-access committed Apr 15, 2020
1 parent bd14685 commit 9295e79
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,11 @@ protected TypeResolution resolveType() {
int index = 0;
for (Expression value : values) {
resolution = isExact(value, sourceText(), ParamOrdinal.fromIndex(index));

if (resolution.unresolved()) {
return resolution;
}

index++;
}

Expand Down

0 comments on commit 9295e79

Please sign in to comment.