aboutsummaryrefslogtreecommitdiffstats
path: root/overloaddata.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Added support for reverse operators.Hugo Lima2009-11-101-6/+8
| | | | Reviewed by Marcelo Lira <marcelo.lira@openbossa.org>
* added the method OverloadData::findNextArgWithDefault() which returnsMarcelo Lira2009-11-061-0/+19
| | | | | | | the nearest occurrence of an argument with a default value. this could be used when the overload has only one signature and some of the arguments ahead could have default values leading to more than one way of calling the method.
* improved OverloadData class to sort the alternative arguments puttingMarcelo Lira2009-10-301-11/+37
| | | | | | the primitive types first and moving down the wrapper objects with more implicit converversions; this ordering scheme is needed to avoid unnecessary (and sometimes wrong) conversions
* renamed PolymorphicData class to OverloadData, this should represent correctlyMarcelo Lira2009-09-021-0/+383
the class' function; other relative renamings were also performed