| Index: tools/json_schema_compiler/model.py
|
| diff --git a/tools/json_schema_compiler/model.py b/tools/json_schema_compiler/model.py
|
| index 86716a550e58438b759e1f3d2d0cfdcb85e87b5f..23b77c6d1402dba8ee88cf0d33b7f78b28b0ef81 100644
|
| --- a/tools/json_schema_compiler/model.py
|
| +++ b/tools/json_schema_compiler/model.py
|
| @@ -140,6 +140,7 @@ class Function(object):
|
| self.description = json.get('description')
|
| self.callback = None
|
| self.parent = parent
|
| + self.nocompile = json.get('nocompile')
|
| for param in json['parameters']:
|
| if param.get('type') == 'function':
|
| if self.callback:
|
|
|