Lines Matching refs:expr_end
349 fstring_compile_expr(Parser *p, const char *expr_start, const char *expr_end,
358 assert(expr_end >= expr_start);
360 assert(*expr_end == '}' || *expr_end == '!' || *expr_end == ':' ||
361 *expr_end == '=');
367 for (s = expr_start; s != expr_end; s++) {
376 if (s == expr_end) {
377 if (*expr_end == '!' || *expr_end == ':' || *expr_end == '=') {
378 RAISE_SYNTAX_ERROR("f-string: expression required before '%c'", *expr_end);
385 len = expr_end - expr_start;
565 const char *expr_end;
720 expr_end = *str;
742 simple_expression = fstring_compile_expr(p, expr_start, expr_end, t);