We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e685c4 commit 1a2edbdCopy full SHA for 1a2edbd
.github/scripts/cldc11_api_compat_check.py
@@ -147,7 +147,7 @@ def parse_class_info(javap_output: str) -> ClassInfo:
147
header_pattern = re.compile(
148
r"(?P<visibility>public|protected)?\s*(?P<kind>class|interface|enum)\s+"
149
r"(?P<name>[\w.$]+)"
150
- r"(?:\s+extends\s+(?P<extends>[^\{]+?))?"
+ r"(?:\s+extends\s+(?P<extends>[^\{]+?)(?=\s+implements|$))?"
151
r"(?:\s+implements\s+(?P<implements>[^\{]+))?",
152
)
153
0 commit comments