comparison Resources/CodeGeneration/test_data/test1.yaml @ 686:0d42bda615a8 am-dev

fix codegen tests
author Alain Mazy <alain@mazy.be>
date Thu, 16 May 2019 16:45:10 +0200
parents 84af39146e76
children
comparison
equal deleted inserted replaced
682:e8b83fe55a33 686:0d42bda615a8
3 # 345678901234567890123456789012345678901234567890123456789012345678901234567890 3 # 345678901234567890123456789012345678901234567890123456789012345678901234567890
4 # 4 #
5 rootName: VsolMessages 5 rootName: VsolMessages
6 6
7 struct B: 7 struct B:
8 __handler: cpp
9
8 someAs: vector<A> 10 someAs: vector<A>
9 someInts: vector<int32> 11 someInts: vector<int32>
10 12
11 struct C: 13 struct C:
14 __handler: cpp
15
12 someBs: vector<B> 16 someBs: vector<B>
13 ddd: vector<string> 17 ddd: vector<string>
14 18
15 struct A: 19 struct A:
20 __handler: cpp
21
16 someStrings: vector<string> 22 someStrings: vector<string>
17 someInts2: vector<int32> 23 someInts2: vector<int32>
18 movies: vector<MovieType> 24 movies: vector<MovieType>
19 25
20 struct Message1: 26 struct Message1:
27 __handler: cpp
28
21 a: int32 29 a: int32
22 b: string 30 b: string
23 c: EnumMonth0 31 c: EnumMonth0
24 d: bool 32 d: bool
33 e: float32
34 f: float64
25 35
26 struct Message2: 36 struct Message2:
37 __handler: cpp
38
27 toto: string = "my-default-value" 39 toto: string = "my-default-value"
28 tata: vector<Message1> 40 tata: vector<Message1>
29 tutu: vector<string> 41 tutu: vector<string>
30 titi: map<string, string> 42 titi: map<string, string>
31 lulu: map<string, Message1> 43 lulu: map<string, Message1>