Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Side by Side Diff: pkg/analyzer/lib/src/summary/format.dart

Issue 2875373002: Move flat_buffer and api_signature into front_end. (Closed)
Patch Set: Update summary format generator. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « pkg/analyzer/lib/src/summary/flat_buffers.dart ('k') | pkg/analyzer/lib/src/summary/format.fbs » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/summary/flat_buffers.dart ('k') | pkg/analyzer/lib/src/summary/format.fbs » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698