'CANNOT_COMPLETE_RESOLVE' error added

This commit is contained in:
Svetlana Isakova
2012-11-09 15:37:10 +04:00
parent eb5b551114
commit dda3091dfb
6 changed files with 29 additions and 0 deletions
@@ -108,6 +108,8 @@ public class IdeErrorMessages {
MAP.put(OVERLOAD_RESOLUTION_AMBIGUITY, "<html>Overload resolution ambiguity. All these functions match. <ul>{0}</ul></html>", HTML_AMBIGUOUS_CALLS);
MAP.put(NONE_APPLICABLE, "<html>None of the following functions can be called with the arguments supplied. <ul>{0}</ul></html>",
new NoneApplicableCallsRenderer());
MAP.put(CANNOT_COMPLETE_RESOLVE, "<html>Cannot choose among the following candidates without completing type inference: <ul>{0}</ul></html>", HTML_AMBIGUOUS_CALLS);
MAP.setImmutable();
}