| Index: tools/json_schema_compiler/idl_schema.py
|
| diff --git a/tools/json_schema_compiler/idl_schema.py b/tools/json_schema_compiler/idl_schema.py
|
| index c6e49bf507b43646b710574786bf31944cff8346..6ce8508da1a01ed01227011be6f10b2fcaaae54c 100644
|
| --- a/tools/json_schema_compiler/idl_schema.py
|
| +++ b/tools/json_schema_compiler/idl_schema.py
|
| @@ -307,7 +307,8 @@ class Enum(object):
|
| 'description': self.description,
|
| 'type': 'string',
|
| 'enum': enum}
|
| - for property_name in ('inline_doc', 'noinline_doc', 'nodoc'):
|
| + for property_name in (
|
| + 'inline_doc', 'noinline_doc', 'nodoc', 'absolute',):
|
| if self.node.GetProperty(property_name):
|
| result[property_name] = True
|
| return result
|
|
|