diff options
Diffstat (limited to 'tools/json_schema_compiler/idl_schema.py')
-rw-r--r-- | tools/json_schema_compiler/idl_schema.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/json_schema_compiler/idl_schema.py b/tools/json_schema_compiler/idl_schema.py index d8b510f..8334e7e 100644 --- a/tools/json_schema_compiler/idl_schema.py +++ b/tools/json_schema_compiler/idl_schema.py @@ -150,7 +150,7 @@ class Member(object): def process(self, callbacks): properties = OrderedDict() name = self.node.GetName() - for property_name in ('OPTIONAL', 'nodoc', 'nocompile'): + for property_name in ('OPTIONAL', 'nodoc', 'nocompile', 'nodart'): if self.node.GetProperty(property_name): properties[property_name.lower()] = True is_function = False |