[gtk/wip/otte/css: 66/79] calc: Have better error location range
- From: Benjamin Otte <otte src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk/wip/otte/css: 66/79] calc: Have better error location range
- Date: Fri, 12 Apr 2019 16:09:25 +0000 (UTC)
commit 271496e4a8dd1c7a8b6b2053e06864f071b46cd0
Author: Benjamin Otte <otte redhat com>
Date: Thu Apr 11 04:31:36 2019 +0200
calc: Have better error location range
gtk/gtkcsscalcvalue.c | 23 ++++++++++++++++++++---
1 file changed, 20 insertions(+), 3 deletions(-)
---
diff --git a/gtk/gtkcsscalcvalue.c b/gtk/gtkcsscalcvalue.c
index fa5b46cc27..929d971bd7 100644
--- a/gtk/gtkcsscalcvalue.c
+++ b/gtk/gtkcsscalcvalue.c
@@ -330,7 +330,18 @@ gtk_css_calc_value_parse_value (GtkCssParser *parser,
}
if (!gtk_css_parser_has_token (parser, GTK_CSS_TOKEN_EOF))
- gtk_css_parser_error_syntax (parser, "Expected closing ')' in calc() subterm");
+ {
+ GtkCssLocation start = *gtk_css_parser_get_start_location (parser);
+ gtk_css_parser_skip_until (parser, GTK_CSS_TOKEN_EOF);
+ gtk_css_parser_error (parser,
+ GTK_CSS_PARSER_ERROR_SYNTAX,
+ &start,
+ gtk_css_parser_get_start_location (parser),
+ "Expected closing ')' in calc() subterm");
+ gtk_css_value_unref (result);
+ gtk_css_parser_end_block (parser);
+ return NULL;
+ }
gtk_css_parser_end_block (parser);
@@ -353,9 +364,11 @@ gtk_css_calc_value_parse_product (GtkCssParser *parser,
{
GtkCssValue *result, *value, *temp;
GtkCssNumberParseFlags actual_flags;
+ GtkCssLocation start;
actual_flags = flags | GTK_CSS_PARSE_NUMBER;
-
+ gtk_css_parser_get_token (parser);
+ start = *gtk_css_parser_get_start_location (parser);
result = gtk_css_calc_value_parse_value (parser, actual_flags);
if (result == NULL)
return NULL;
@@ -396,7 +409,11 @@ gtk_css_calc_value_parse_product (GtkCssParser *parser,
if (is_number (result) && !(flags & GTK_CSS_PARSE_NUMBER))
{
- gtk_css_parser_error_syntax (parser, "calc() product term has no units");
+ gtk_css_parser_error (parser,
+ GTK_CSS_PARSER_ERROR_SYNTAX,
+ &start,
+ gtk_css_parser_get_start_location (parser),
+ "calc() product term has no units");
goto fail;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]