1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| Quintiq file version 2.0
| #parent: #root
| Method ParseModeledComponentDefinition (ModeledComponentDefinition component, Number padding) id:Method_GlobalStateTestGenerator_ParseModeledComponentDefinition
| {
| #keys: '[142876.9.202774580]'
| Body:
| [*
| padstr := "".PadLeft( " ", padding );
|
| info( padstr + component.Name() );
|
| children := selectsortedset( component, Children, child, true, child.Index() );
| traverse( children, Elements, child )
| {
| this.ParseModeledComponentDefinition( child, padding + 4 );
| }
| *]
| }
|
|