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

Side by Side Diff: pkg/analysis_server/tool/spec/codegen_dart.dart

Issue 725143004: Format and sort analyzer and analysis_server packages. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 library codegen.dart; 5 library codegen.dart;
6 6
7 import 'api.dart'; 7 import 'api.dart';
8 8
9 /** 9 /**
10 * Visitor specialized for generating Dart code. 10 * Visitor specialized for generating Dart code.
(...skipping 30 matching lines...) Expand all
41 } else if (type is TypeList) { 41 } else if (type is TypeList) {
42 return 'List<${dartType(type.itemType)}>'; 42 return 'List<${dartType(type.itemType)}>';
43 } else if (type is TypeMap) { 43 } else if (type is TypeMap) {
44 return 'Map<${dartType(type.keyType)}, ${dartType(type.valueType)}>'; 44 return 'Map<${dartType(type.keyType)}, ${dartType(type.valueType)}>';
45 } else if (type is TypeUnion) { 45 } else if (type is TypeUnion) {
46 return 'dynamic'; 46 return 'dynamic';
47 } else { 47 } else {
48 throw new Exception("Can't convert to a dart type"); 48 throw new Exception("Can't convert to a dart type");
49 } 49 }
50 } 50 }
51 } 51 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/tool/spec/codegen_analysis_server.dart ('k') | pkg/analysis_server/tool/spec/codegen_dart_protocol.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698