示例#1
0
List<ValueDefiner*> SimpleBinaryOperation::findOperators(Operator _o, Type const& _left, Type const& _right)
{
	return findBestOverload((_left, _right), allOperators(_o.symbol()));
}
示例#2
0
List<ValueDefiner*> SimpleUnaryOperation::findOperators(Operator _o, Type const& _type)
{
	return findBestOverload((_type), allOperators(_o.symbol()));
}