OLD | NEW |
1 // Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Fletch 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 // Generated file. Do not edit. | 5 // Generated file. Do not edit. |
6 | 6 |
7 library buildbot_service; | 7 library buildbot_service; |
8 | 8 |
9 import "dart:fletch"; | 9 import "dart:fletch"; |
10 import "dart:fletch.ffi"; | 10 import "dart:fletch.ffi"; |
11 import "dart:service" as service; | 11 import "dart:fletch.service" as service; |
12 import "struct.dart"; | 12 import "struct.dart"; |
13 | 13 |
14 final Channel _channel = new Channel(); | 14 final Channel _channel = new Channel(); |
15 final Port _port = new Port(_channel); | 15 final Port _port = new Port(_channel); |
16 final ForeignFunction _postResult = ForeignLibrary.main.lookup("PostResultToServ
ice"); | 16 final ForeignFunction _postResult = ForeignLibrary.main.lookup("PostResultToServ
ice"); |
17 | 17 |
18 bool _terminated = false; | 18 bool _terminated = false; |
19 BuildBotService _impl; | 19 BuildBotService _impl; |
20 | 20 |
21 abstract class BuildBotService { | 21 abstract class BuildBotService { |
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
391 CommitListUpdatePatchDataBuilder operator[](int index) => readListElement(new
CommitListUpdatePatchDataBuilder(), index, 16); | 391 CommitListUpdatePatchDataBuilder operator[](int index) => readListElement(new
CommitListUpdatePatchDataBuilder(), index, 16); |
392 } | 392 } |
393 | 393 |
394 class _CommitPatchDataList extends ListReader<CommitPatchData> implements List<C
ommitPatchData> { | 394 class _CommitPatchDataList extends ListReader<CommitPatchData> implements List<C
ommitPatchData> { |
395 CommitPatchData operator[](int index) => readListElement(new CommitPatchData()
, index, 24); | 395 CommitPatchData operator[](int index) => readListElement(new CommitPatchData()
, index, 24); |
396 } | 396 } |
397 | 397 |
398 class _CommitPatchDataBuilderList extends ListBuilder<CommitPatchDataBuilder> im
plements List<CommitPatchDataBuilder> { | 398 class _CommitPatchDataBuilderList extends ListBuilder<CommitPatchDataBuilder> im
plements List<CommitPatchDataBuilder> { |
399 CommitPatchDataBuilder operator[](int index) => readListElement(new CommitPatc
hDataBuilder(), index, 24); | 399 CommitPatchDataBuilder operator[](int index) => readListElement(new CommitPatc
hDataBuilder(), index, 24); |
400 } | 400 } |
OLD | NEW |