]> Git Repo - qemu.git/commitdiff
qapi/parser: clarify _end_section() logic
authorJohn Snow <[email protected]>
Thu, 30 Sep 2021 20:57:09 +0000 (16:57 -0400)
committerMarkus Armbruster <[email protected]>
Sat, 2 Oct 2021 05:33:42 +0000 (07:33 +0200)
The "if self._section" clause in end_section is mysterious: In which
circumstances might we end a section when we don't have one?

QAPIDoc always expects there to be a "current section", only except
after a call to end_comment(). This actually *shouldn't* ever be 'None',
so let's remove that logic so I don't wonder why it's like this again in
three months.

Signed-off-by: John Snow <[email protected]>
Message-Id: <20210930205716.1148693[email protected]>
Reviewed-by: Markus Armbruster <[email protected]>
Signed-off-by: Markus Armbruster <[email protected]>
scripts/qapi/parser.py

index 23898ab1dcd3a587650abe692eda675fe38afb95..82f1d952b13997d0b0b7fd5687763fda13208788 100644 (file)
@@ -718,13 +718,21 @@ class QAPIDoc:
         self.sections.append(self._section)
 
     def _end_section(self):
-        if self._section:
-            text = self._section.text = self._section.text.strip()
-            if self._section.name and (not text or text.isspace()):
-                raise QAPIParseError(
-                    self._parser,
-                    "empty doc section '%s'" % self._section.name)
-            self._section = None
+        assert self._section is not None
+
+        text = self._section.text = self._section.text.strip()
+
+        # Only the 'body' section is allowed to have an empty body.
+        # All other sections, including anonymous ones, must have text.
+        if self._section != self.body and not text:
+            # We do not create anonymous sections unless there is
+            # something to put in them; this is a parser bug.
+            assert self._section.name
+            raise QAPIParseError(
+                self._parser,
+                "empty doc section '%s'" % self._section.name)
+
+        self._section = None
 
     def _append_freeform(self, line):
         match = re.match(r'(@\S+:)', line)
This page took 0.028506 seconds and 4 git commands to generate.