From 1013d3e7c2af31ce7cf5720d03e39d9861755fdb Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Thu, 21 Jun 2018 05:50:15 +0200 Subject: pnodes.py: error message on undescribed node. --- src/xtools/pnodes.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/xtools/pnodes.py b/src/xtools/pnodes.py index 4777a4ce3..82c1a69b2 100755 --- a/src/xtools/pnodes.py +++ b/src/xtools/pnodes.py @@ -186,7 +186,7 @@ def read_kinds(filename): continue m = pat_comment.match(l) if not m: - raise ParseError(lr, 'Unknow line within kind declaration') + raise ParseError(lr, 'Unknown line within kind declaration') # Check subtypes pat_subtype = re.compile(' subtype ' + r'(\w+) is ' @@ -391,7 +391,7 @@ def read_nodes(filename, kinds, kinds_ranges, fields, funcs): while True: l = lr.get() if l == ' -- End of ' + type_name + '.\n': - return nodes + break if l == '\n': continue m = pat_decl.match(l) @@ -428,6 +428,10 @@ def read_nodes(filename, kinds, kinds_ranges, fields, funcs): if pat_comment_line.match(l) or pat_comment_box.match(l): continue raise ParseError(lr, 'bad line in node description') + + for k in kinds: + if k not in nodes: + raise ParseError(lr, 'no desription for "{}"'.format(k)) return nodes -- cgit v1.2.3