Servoy 6.0 release candidate 5

When calling a prototype method, Servoy warns “The method xxxx in type xxx is not applicable for the arguments (xxx)” even if you use the object"method" notation instead of object.method().

Example using date_modjs module from servoyforge (two of these warnings are shown for the last line):

// Note: start and end are Date objects defined earlier.

/** @type {String} */
var dateFormat = "yyyy-MM-dd HH:mm:ss";
/** @type {String} */
var searchDate = start["toString"](dateFormat) + "..." + end["toString"](dateFormat) + "|" + dateFormat;