Lines Matching refs:nodeFormat
79 ParserImpl::NodeFormatType nodeFormat = GetFormatPlaceholderType(); in ParseExpressionFormatPlaceholder() local
80 if (std::get<0>(nodeFormat)) { in ParseExpressionFormatPlaceholder()
84 if (auto const placeholderType = std::get<1>(nodeFormat); placeholderType == TYPE_FORMAT_NODE) { in ParseExpressionFormatPlaceholder()
85 return ParseTypeFormatPlaceholder(std::make_optional(std::move(nodeFormat))); in ParseExpressionFormatPlaceholder()
87 return ParseIdentifierFormatPlaceholder(std::make_optional(std::move(nodeFormat))); in ParseExpressionFormatPlaceholder()
92 auto const placeholderNumber = std::get<2>(nodeFormat); in ParseExpressionFormatPlaceholder()
104 …peNode *ETSParser::ParseTypeFormatPlaceholder(std::optional<ParserImpl::NodeFormatType> nodeFormat) in ParseTypeFormatPlaceholder() argument
106 if (!nodeFormat.has_value()) { in ParseTypeFormatPlaceholder()
111 nodeFormat = GetFormatPlaceholderType(); in ParseTypeFormatPlaceholder()
112 if (std::get<0>(*nodeFormat) || std::get<1>(*nodeFormat) != TYPE_FORMAT_NODE) { in ParseTypeFormatPlaceholder()
117 auto const placeholderNumber = std::get<2>(*nodeFormat); in ParseTypeFormatPlaceholder()
129 …arser::ParseIdentifierFormatPlaceholder(std::optional<ParserImpl::NodeFormatType> nodeFormat) const in ParseIdentifierFormatPlaceholder()
131 if (!nodeFormat.has_value()) { in ParseIdentifierFormatPlaceholder()
136 nodeFormat = GetFormatPlaceholderType(); in ParseIdentifierFormatPlaceholder()
137 if (std::get<0>(*nodeFormat) || std::get<1>(*nodeFormat) != IDENTIFIER_FORMAT_NODE) { in ParseIdentifierFormatPlaceholder()
142 auto const placeholderNumber = std::get<2>(*nodeFormat); in ParseIdentifierFormatPlaceholder()
160 ParserImpl::NodeFormatType nodeFormat = GetFormatPlaceholderType(); in ParseStatementFormatPlaceholder() local
161 if (std::get<0>(nodeFormat) || std::get<1>(nodeFormat) != STATEMENT_FORMAT_NODE) { in ParseStatementFormatPlaceholder()
165 auto const placeholderNumber = std::get<2>(nodeFormat); in ParseStatementFormatPlaceholder()
178 ParserImpl::NodeFormatType nodeFormat = GetFormatPlaceholderType(); in ParseTypeParametersFormatPlaceholder() local
179 if (std::get<0>(nodeFormat) || std::get<1>(nodeFormat) != EXPRESSION_FORMAT_NODE) { in ParseTypeParametersFormatPlaceholder()
183 auto const placeholderNumber = std::get<2>(nodeFormat); in ParseTypeParametersFormatPlaceholder()
204 ParserImpl::NodeFormatType nodeFormat = GetFormatPlaceholderType(); in ParseAstNodesArrayFormatPlaceholder() local
205 if (!std::get<0>(nodeFormat) || std::get<1>(nodeFormat) != GENERAL_FORMAT_NODE) { in ParseAstNodesArrayFormatPlaceholder()
209 auto const placeholderNumber = std::get<2>(nodeFormat); in ParseAstNodesArrayFormatPlaceholder()
226 ParserImpl::NodeFormatType nodeFormat = GetFormatPlaceholderType(); in ParseStatementsArrayFormatPlaceholder() local
227 if (!std::get<0>(nodeFormat) || std::get<1>(nodeFormat) != STATEMENT_FORMAT_NODE) { in ParseStatementsArrayFormatPlaceholder()
231 auto const placeholderNumber = std::get<2>(nodeFormat); in ParseStatementsArrayFormatPlaceholder()
248 ParserImpl::NodeFormatType nodeFormat = GetFormatPlaceholderType(); in ParseExpressionsArrayFormatPlaceholder() local
249 if (!std::get<0>(nodeFormat) || std::get<1>(nodeFormat) != EXPRESSION_FORMAT_NODE) { in ParseExpressionsArrayFormatPlaceholder()
253 auto const placeholderNumber = std::get<2>(nodeFormat); in ParseExpressionsArrayFormatPlaceholder()