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.
2 parents 5f6a074 + fe41108 commit 68da1f5Copy full SHA for 68da1f5
utils/viewcfg
@@ -67,7 +67,7 @@ class Block(object):
67
if self.succs is None:
68
self.succs = []
69
if self.last_line is not None:
70
- for match in re.finditer(r'\bbb[0-9]+\b', self.last_line):
+ for match in re.finditer(r'\bbb[0-9]+\w*\b', self.last_line):
71
self.succs.append(match.group())
72
73
it = re.finditer(r'\blabel %"?([^\s"]+)\b', self.last_line)
0 commit comments