Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 // | 4 // |
| 5 // This file has been automatically generated. Please do not edit it manually. | 5 // This file has been automatically generated. Please do not edit it manually. |
|
Brian Wilkerson
2016/03/03 01:03:41
This file has been automatically generated. Pleas
kevmoo
2016/03/03 01:09:39
Done.
| |
| 6 // To regenerate the file, use the script "pkg/analyzer/tool/generate_files". | 6 // To regenerate the file, use the script "pkg/analyzer/tool/generate_files". |
| 7 | 7 |
| 8 library analyzer.src.summary.format; | 8 library analyzer.src.summary.format; |
| 9 | 9 |
| 10 import 'dart:convert' as convert; | |
| 11 | |
| 10 import 'flat_buffers.dart' as fb; | 12 import 'flat_buffers.dart' as fb; |
| 11 import 'idl.dart' as idl; | 13 import 'idl.dart' as idl; |
| 12 import 'dart:convert' as convert; | |
| 13 | 14 |
| 14 class _IndexNameKindReader extends fb.Reader<idl.IndexNameKind> { | 15 class _IndexNameKindReader extends fb.Reader<idl.IndexNameKind> { |
| 15 const _IndexNameKindReader() : super(); | 16 const _IndexNameKindReader() : super(); |
| 16 | 17 |
| 17 @override | 18 @override |
| 18 int get size => 1; | 19 int get size => 1; |
| 19 | 20 |
| 20 @override | 21 @override |
| 21 idl.IndexNameKind read(fb.BufferPointer bp) { | 22 idl.IndexNameKind read(fb.BufferPointer bp) { |
| 22 int index = const fb.Uint8Reader().read(bp); | 23 int index = const fb.Uint8Reader().read(bp); |
| (...skipping 7301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 7324 "propagatedTypeSlot": propagatedTypeSlot, | 7325 "propagatedTypeSlot": propagatedTypeSlot, |
| 7325 "type": type, | 7326 "type": type, |
| 7326 "visibleLength": visibleLength, | 7327 "visibleLength": visibleLength, |
| 7327 "visibleOffset": visibleOffset, | 7328 "visibleOffset": visibleOffset, |
| 7328 }; | 7329 }; |
| 7329 | 7330 |
| 7330 @override | 7331 @override |
| 7331 String toString() => convert.JSON.encode(toJson()); | 7332 String toString() => convert.JSON.encode(toJson()); |
| 7332 } | 7333 } |
| 7333 | 7334 |
| OLD | NEW |