enum class Parser::LambdaIntroducerTentativeParse
Description
Result of tentatively parsing a lambda-introducer.
Declared at: clang/include/clang/Parse/Parser.h:1896
Enumerators
Name | Value | Comment |
---|---|---|
Success | 0 | This appears to be a lambda-introducer, which has been fully parsed. |
Incomplete | 1 | This is a lambda-introducer, but has not been fully parsed, and this function needs to be called again to parse it. |
MessageSend | 2 | This is definitely an Objective-C message send expression, rather than a lambda-introducer, attribute-specifier, or array designator. |
Invalid | 3 | This is not a lambda-introducer. |