struct Pattern::NumericVariableMatch
Declaration
struct Pattern::NumericVariableMatch { /* full declaration omitted */ };
Description
Structure representing the definition of a numeric variable in a pattern. It holds the pointer to the class instance holding the value and matching format of the numeric variable whose value is being defined and the number of the parenthesis group in RegExStr to capture that value.
Declared at: llvm/lib/FileCheck/FileCheckImpl.h:650
Member Variables
- public llvm::NumericVariable* DefinedNumericVariable
- Pointer to class instance holding the value and matching format of the numeric variable being defined.
- public unsigned int CaptureParenGroup
- Number of the parenthesis group in RegExStr that captures the value of this numeric variable definition.