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

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

Issue 1759483004: pkg/analyzer: import cleanup (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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
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.
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
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
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/generated/error_verifier.dart ('k') | pkg/analyzer/lib/src/task/strong_mode.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698