| 73 | } |
| 74 | |
| 75 | int32_t AnnotationArgumentList::getIntOption(const string & name, int32_t def) const { |
| 76 | auto arg = find(name, Type::tInt); |
| 77 | return arg ? arg->iValue : def; |
| 78 | } |
| 79 | |
| 80 | uint64_t AnnotationArgumentList::getUInt64Option(const string & name, uint64_t def) const { |
| 81 | auto arg = find(name, Type::tInt); |
no test coverage detected