You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/concerto-core/src/basemodelmanager.ts
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -93,17 +93,18 @@ class BaseModelManager {
93
93
options: any;
94
94
decoratorValidation: any;
95
95
metamodelModelFile: any;
96
-
/**
96
+
/**
97
97
* Create the ModelManager.
98
98
* @constructor
99
99
* @param {object} [options] - ModelManager options, also passed to Serializer
100
100
* @param {Object} [options.regExp] - An alternative regular expression engine.
101
101
* @param {boolean} [options.metamodelValidation] - When true, modelfiles will be validated
102
102
* @param {boolean} [options.addMetamodel] - When true, the Concerto metamodel is added to the model manager
103
+
* @param {boolean} [options.dangerouslyAllowReservedSystemTypeNamesInUserModels] - Transitional escape hatch; when true, declarations may use reserved system type names
103
104
* @param {object} [options.decoratorValidation] - the decorator validation configuration
104
105
* @param {string} [options.decoratorValidation.missingDecorator] - the validation log level for missingDecorator decorators: off, warning, error
105
106
* @param {string} [options.decoratorValidation.invalidDecorator] - the validation log level for invalidDecorator decorators: off, warning, error
106
-
* @param {*} [processFile] - how to obtain a concerto AST from an input to the model manager
107
+
* @param {*} [processFile] - how to obtain a concerto AST from an input to the model manager
Copy file name to clipboardExpand all lines: packages/concerto-core/src/modelmanager.ts
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,7 @@ class ModelManager extends BaseModelManager {
61
61
* @constructor
62
62
* @param {object} [options] - ModelManager options, also passed to Serializer
63
63
* @param {Object} [options.regExp] - An alternative regular expression engine.
64
+
* @param {boolean} [options.dangerouslyAllowReservedSystemTypeNamesInUserModels] - Transitional escape hatch; when true, declarations may use reserved system type names
0 commit comments