chore(modeling/behavior): order behaviors
This commit is contained in:
parent
5c629a9889
commit
fbf82e83e5
|
@ -1,21 +1,20 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
__init__: [
|
__init__: [
|
||||||
'appendBehavior',
|
'appendBehavior',
|
||||||
'createParticipantBehavior',
|
|
||||||
'createBoundaryEventBehavior',
|
'createBoundaryEventBehavior',
|
||||||
'createOnFlowBehavior',
|
'createOnFlowBehavior',
|
||||||
'replaceConnectionBehavior',
|
'createParticipantBehavior',
|
||||||
'removeParticipantBehavior',
|
|
||||||
'modelingFeedback',
|
'modelingFeedback',
|
||||||
'moveStartEventBehavior'
|
'moveStartEventBehavior',
|
||||||
|
'removeParticipantBehavior',
|
||||||
|
'replaceConnectionBehavior'
|
||||||
],
|
],
|
||||||
appendBehavior: [ 'type', require('./AppendBehavior') ],
|
appendBehavior: [ 'type', require('./AppendBehavior') ],
|
||||||
createParticipantBehavior: [ 'type', require('./CreateParticipantBehavior') ],
|
|
||||||
createBoundaryEventBehavior: [ 'type', require('./CreateBoundaryEventBehavior') ],
|
createBoundaryEventBehavior: [ 'type', require('./CreateBoundaryEventBehavior') ],
|
||||||
createOnFlowBehavior: [ 'type', require('./CreateOnFlowBehavior') ],
|
createOnFlowBehavior: [ 'type', require('./CreateOnFlowBehavior') ],
|
||||||
replaceConnectionBehavior: [ 'type', require('./ReplaceConnectionBehavior') ],
|
createParticipantBehavior: [ 'type', require('./CreateParticipantBehavior') ],
|
||||||
removeParticipantBehavior: [ 'type', require('./RemoveParticipantBehavior') ],
|
|
||||||
modelingFeedback: [ 'type', require('./ModelingFeedback') ],
|
modelingFeedback: [ 'type', require('./ModelingFeedback') ],
|
||||||
moveStartEventBehavior: [ 'type', require('./MoveStartEventBehavior') ]
|
moveStartEventBehavior: [ 'type', require('./MoveStartEventBehavior') ],
|
||||||
|
removeParticipantBehavior: [ 'type', require('./RemoveParticipantBehavior') ],
|
||||||
|
replaceConnectionBehavior: [ 'type', require('./ReplaceConnectionBehavior') ]
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue