OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | |
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 file. | |
4 | |
5 part of protoc; | |
Siggi Cherem (dart-lang)
2015/06/22 19:38:57
might be worth renaming this file, maybe make it i
skybrian
2015/06/23 02:21:25
I replaced this file in favor of the mixins_meta l
| |
6 | |
7 // Each supported mixin should have an entry in this map. | |
8 // TODO: figure out how to extract the reserved names automatically. | |
Siggi Cherem (dart-lang)
2015/06/22 19:38:57
since protoc runs in the vm only, you could to do
skybrian
2015/06/23 02:21:26
Yes, but I'm not sure why we didn't do that before
| |
9 const reservedNamesForMixins = const { | |
10 "PbMapMixin": PbMapMixin_reservedNames, | |
Siggi Cherem (dart-lang)
2015/06/22 19:38:57
nit: unindent (indent only +2)
| |
11 }; | |
OLD | NEW |