MLIR
21.0.0git
|
This class represents a StringSwitch like class that is useful for parsing expected keywords. More...
#include "mlir/IR/OpImplementation.h"
Public Member Functions | |
KeywordSwitch (AsmParser &parser, StringRef *keyword=nullptr) | |
KeywordSwitch & | Case (StringLiteral str, ResultT value) |
Case that uses the provided value when true. More... | |
KeywordSwitch & | Default (ResultT value) |
template<typename FnT > | |
std::enable_if_t<!std::is_convertible< FnT, ResultT >::value, KeywordSwitch & > | Case (StringLiteral str, FnT &&fn) |
Case that invokes the provided functor when true. More... | |
template<typename FnT > | |
std::enable_if_t<!std::is_convertible< FnT, ResultT >::value, KeywordSwitch & > | Default (FnT &&fn) |
bool | hasValue () const |
Returns true if this switch has a value yet. More... | |
operator ResultT () | |
Return the result of the switch. More... | |
This class represents a StringSwitch like class that is useful for parsing expected keywords.
On construction, unless a non-empty keyword is provided, it invokes parseKeyword
and processes each of the provided cases statements until a match is hit. The provided ResultT
must be assignable from failure()
.
Definition at line 825 of file OpImplementation.h.
|
inline |
Definition at line 827 of file OpImplementation.h.
References mlir::AsmParser::parseKeywordOrCompletion().
|
inline |
Case that invokes the provided functor when true.
The parameters passed to the functor are the keyword, and the location of the keyword (in case any errors need to be emitted).
Definition at line 846 of file OpImplementation.h.
References mlir::AsmParser::codeCompleteExpectedTokens().
|
inline |
Case that uses the provided value when true.
Definition at line 835 of file OpImplementation.h.
|
inline |
Definition at line 859 of file OpImplementation.h.
|
inline |
Definition at line 838 of file OpImplementation.h.
|
inline |
Returns true if this switch has a value yet.
Definition at line 866 of file OpImplementation.h.
|
inline |
Return the result of the switch.
Definition at line 869 of file OpImplementation.h.
References mlir::AsmParser::emitError().