Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-impl / src / test / resources / included-statements-test / child-module.yang
1 submodule child-module {
2
3     belongs-to "root-module" {
4         prefix "root";
5     }
6
7     typedef new-string-type {
8         type string {
9             pattern "[abc]{3}";
10         }
11     }
12
13     typedef new-int32-type {
14         type int32 {
15             range "1..4 | 10..20";
16          }
17     }
18
19     feature new-feature1 {
20         description "a new feature";
21     }
22
23     feature new-feature2 {
24         description "another new feature";
25     }
26
27     container parent-container {
28         container child-container {
29             leaf autumn-leaf {
30                 type string;
31             }
32             leaf winter-snow {
33                 type string;
34             }
35         }
36     }
37
38 }