OLD | NEW |
1 // Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE.md file. | 3 // BSD-style license that can be found in the LICENSE.md file. |
4 | 4 |
5 service ConformanceService { | 5 service ConformanceService { |
6 int32 getAge(Person* person); | 6 int32 getAge(Person* person); |
7 int32 getBoxedAge(PersonBox* box); | 7 int32 getBoxedAge(PersonBox* box); |
8 AgeStats* getAgeStats(Person* person); | 8 AgeStats* getAgeStats(Person* person); |
9 AgeStats* createAgeStats(int32 averageAge, int32 sum); | 9 AgeStats* createAgeStats(int32 averageAge, int32 sum); |
10 Person* createPerson(int32 children); | 10 Person* createPerson(int32 children); |
11 Node* createNode(int32 depth); | 11 Node* createNode(int32 depth); |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 } | 62 } |
63 | 63 |
64 struct TableFlip { | 64 struct TableFlip { |
65 String flip; | 65 String flip; |
66 } | 66 } |
67 | 67 |
68 struct InternalFields { | 68 struct InternalFields { |
69 int32 offset; | 69 int32 offset; |
70 String segment; | 70 String segment; |
71 } | 71 } |
OLD | NEW |