MLIR
20.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 824 of file OpImplementation.h.
|
inline |
Definition at line 826 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 845 of file OpImplementation.h.
References mlir::AsmParser::codeCompleteExpectedTokens().
|
inline |
Case that uses the provided value when true.
Definition at line 834 of file OpImplementation.h.
|
inline |
Definition at line 858 of file OpImplementation.h.
|
inline |
Definition at line 837 of file OpImplementation.h.
|
inline |
Returns true if this switch has a value yet.
Definition at line 865 of file OpImplementation.h.
|
inline |
Return the result of the switch.
Definition at line 868 of file OpImplementation.h.
References mlir::AsmParser::emitError().