| 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 'dart:convert' as convert; | 10 import 'dart:convert' as convert; |
| 11 | 11 |
| 12 import 'package:front_end/src/base/api_signature.dart' as api_sig; | 12 import 'package:analyzer/src/summary/api_signature.dart' as api_sig; |
| 13 import 'package:front_end/src/base/flat_buffers.dart' as fb; | 13 import 'package:analyzer/src/summary/flat_buffers.dart' as fb; |
| 14 | 14 |
| 15 import 'idl.dart' as idl; | 15 import 'idl.dart' as idl; |
| 16 | 16 |
| 17 class _EntityRefKindReader extends fb.Reader<idl.EntityRefKind> { | 17 class _EntityRefKindReader extends fb.Reader<idl.EntityRefKind> { |
| 18 const _EntityRefKindReader() : super(); | 18 const _EntityRefKindReader() : super(); |
| 19 | 19 |
| 20 @override | 20 @override |
| 21 int get size => 1; | 21 int get size => 1; |
| 22 | 22 |
| 23 @override | 23 @override |
| (...skipping 12613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 12637 "isStatic": isStatic, | 12637 "isStatic": isStatic, |
| 12638 "name": name, | 12638 "name": name, |
| 12639 "nameOffset": nameOffset, | 12639 "nameOffset": nameOffset, |
| 12640 "propagatedTypeSlot": propagatedTypeSlot, | 12640 "propagatedTypeSlot": propagatedTypeSlot, |
| 12641 "type": type, | 12641 "type": type, |
| 12642 }; | 12642 }; |
| 12643 | 12643 |
| 12644 @override | 12644 @override |
| 12645 String toString() => convert.JSON.encode(toJson()); | 12645 String toString() => convert.JSON.encode(toJson()); |
| 12646 } | 12646 } |
| OLD | NEW |