static AnnotationID AID; // AnnotationID for this class
// Unary Operators...
- virtual ConstPoolVal *not(const ConstPoolVal *V) const = 0;
+ virtual ConstPoolVal *op_not(const ConstPoolVal *V) const = 0;
// Binary Operators...
virtual ConstPoolVal *add(const ConstPoolVal *V1,
inline ConstPoolVal *operator!(const ConstPoolVal &V) {
- return ConstRules::get(V)->not(&V);
+ return ConstRules::get(V)->op_not(&V);
}
static AnnotationID AID; // AnnotationID for this class
// Unary Operators...
- virtual ConstPoolVal *not(const ConstPoolVal *V) const = 0;
+ virtual ConstPoolVal *op_not(const ConstPoolVal *V) const = 0;
// Binary Operators...
virtual ConstPoolVal *add(const ConstPoolVal *V1,
inline ConstPoolVal *operator!(const ConstPoolVal &V) {
- return ConstRules::get(V)->not(&V);
+ return ConstRules::get(V)->op_not(&V);
}
static AnnotationID AID; // AnnotationID for this class
// Unary Operators...
- virtual ConstPoolVal *not(const ConstPoolVal *V) const = 0;
+ virtual ConstPoolVal *op_not(const ConstPoolVal *V) const = 0;
// Binary Operators...
virtual ConstPoolVal *add(const ConstPoolVal *V1,
inline ConstPoolVal *operator!(const ConstPoolVal &V) {
- return ConstRules::get(V)->not(&V);
+ return ConstRules::get(V)->op_not(&V);
}