[vala/0.44] girparser: Handle "function-macro" by skipping them
- From: Rico Tzschichholz <ricotz src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vala/0.44] girparser: Handle "function-macro" by skipping them
- Date: Mon, 5 Aug 2019 07:17:49 +0000 (UTC)
commit 1977ddbde492e9e0a2b16573bc0dd5f29f21b2da
Author: Rico Tzschichholz <ricotz ubuntu com>
Date: Mon Jul 22 09:29:37 2019 +0200
girparser: Handle "function-macro" by skipping them
See https://gitlab.gnome.org/GNOME/gobject-introspection/merge_requests/159
vala/valagirparser.vala | 14 ++++++++++++++
1 file changed, 14 insertions(+)
---
diff --git a/vala/valagirparser.vala b/vala/valagirparser.vala
index c5f5cc635..7c4ca6d01 100644
--- a/vala/valagirparser.vala
+++ b/vala/valagirparser.vala
@@ -2170,6 +2170,8 @@ public class Vala.GirParser : CodeVisitor {
parse_bitfield ();
} else if (reader.name == "function") {
parse_method ("function");
+ } else if (reader.name == "function-macro") {
+ skip_element ();
} else if (reader.name == "callback") {
parse_callback ();
} else if (reader.name == "record") {
@@ -2372,6 +2374,8 @@ public class Vala.GirParser : CodeVisitor {
}
} else if (reader.name == "function") {
skip_element ();
+ } else if (reader.name == "function-macro") {
+ skip_element ();
} else {
// error
Report.error (get_current_src (), "unknown child element `%s' in `%s'".printf
(reader.name, element_name));
@@ -2822,6 +2826,8 @@ public class Vala.GirParser : CodeVisitor {
parse_method ("method");
} else if (reader.name == "function") {
skip_element ();
+ } else if (reader.name == "function-macro") {
+ skip_element ();
} else if (reader.name == "union") {
parse_union ();
} else {
@@ -2899,6 +2905,8 @@ public class Vala.GirParser : CodeVisitor {
parse_constructor ();
} else if (reader.name == "function") {
parse_method ("function");
+ } else if (reader.name == "function-macro") {
+ skip_element ();
} else if (reader.name == "method") {
parse_method ("method");
} else if (reader.name == "virtual-method") {
@@ -2961,6 +2969,8 @@ public class Vala.GirParser : CodeVisitor {
parse_method ("virtual-method");
} else if (reader.name == "function") {
parse_method ("function");
+ } else if (reader.name == "function-macro") {
+ skip_element ();
} else if (reader.name == "method") {
parse_method ("method");
} else if (reader.name == "glib:signal") {
@@ -3444,6 +3454,8 @@ public class Vala.GirParser : CodeVisitor {
}
} else if (reader.name == "function") {
skip_element ();
+ } else if (reader.name == "function-macro") {
+ skip_element ();
} else if (reader.name == "union") {
parse_union ();
} else {
@@ -3532,6 +3544,8 @@ public class Vala.GirParser : CodeVisitor {
parse_method ("method");
} else if (reader.name == "function") {
skip_element ();
+ } else if (reader.name == "function-macro") {
+ skip_element ();
} else if (reader.name == "record") {
parse_record ();
} else {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]