| 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. |
| 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 'flat_buffers.dart' as fb; | 10 import 'dart:convert' as convert; |
| 11 |
| 12 import 'package:front_end/src/base/api_signature.dart' as api_sig; |
| 13 import 'package:front_end/src/base/flat_buffers.dart' as fb; |
| 14 |
| 11 import 'idl.dart' as idl; | 15 import 'idl.dart' as idl; |
| 12 import 'dart:convert' as convert; | |
| 13 import 'api_signature.dart' as api_sig; | |
| 14 | 16 |
| 15 class _EntityRefKindReader extends fb.Reader<idl.EntityRefKind> { | 17 class _EntityRefKindReader extends fb.Reader<idl.EntityRefKind> { |
| 16 const _EntityRefKindReader() : super(); | 18 const _EntityRefKindReader() : super(); |
| 17 | 19 |
| 18 @override | 20 @override |
| 19 int get size => 1; | 21 int get size => 1; |
| 20 | 22 |
| 21 @override | 23 @override |
| 22 idl.EntityRefKind read(fb.BufferContext bc, int offset) { | 24 idl.EntityRefKind read(fb.BufferContext bc, int offset) { |
| 23 int index = const fb.Uint8Reader().read(bc, offset); | 25 int index = const fb.Uint8Reader().read(bc, offset); |
| (...skipping 12628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12652 "nameOffset": nameOffset, | 12654 "nameOffset": nameOffset, |
| 12653 "propagatedTypeSlot": propagatedTypeSlot, | 12655 "propagatedTypeSlot": propagatedTypeSlot, |
| 12654 "type": type, | 12656 "type": type, |
| 12655 "visibleLength": visibleLength, | 12657 "visibleLength": visibleLength, |
| 12656 "visibleOffset": visibleOffset, | 12658 "visibleOffset": visibleOffset, |
| 12657 }; | 12659 }; |
| 12658 | 12660 |
| 12659 @override | 12661 @override |
| 12660 String toString() => convert.JSON.encode(toJson()); | 12662 String toString() => convert.JSON.encode(toJson()); |
| 12661 } | 12663 } |
| OLD | NEW |