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

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

Issue 2844273003: Unify the server and plugin versions of the generators (Closed)
Patch Set: add missed files 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
OLDNEW
1 // Copyright (c) 2017, 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 import 'api.dart'; 5 import 'api.dart';
6 6
7 /** 7 /**
8 * Visitor specialized for generating Dart code. 8 * Visitor specialized for generating Dart code.
9 */ 9 */
10 class DartCodegenVisitor extends HierarchicalApiVisitor { 10 class DartCodegenVisitor extends HierarchicalApiVisitor {
11 /** 11 /**
(...skipping 28 matching lines...) Expand all
40 return 'List<${dartType(type.itemType)}>'; 40 return 'List<${dartType(type.itemType)}>';
41 } else if (type is TypeMap) { 41 } else if (type is TypeMap) {
42 return 'Map<${dartType(type.keyType)}, ${dartType(type.valueType)}>'; 42 return 'Map<${dartType(type.keyType)}, ${dartType(type.valueType)}>';
43 } else if (type is TypeUnion) { 43 } else if (type is TypeUnion) {
44 return 'dynamic'; 44 return 'dynamic';
45 } else { 45 } else {
46 throw new Exception("Can't convert to a dart type"); 46 throw new Exception("Can't convert to a dart type");
47 } 47 }
48 } 48 }
49 } 49 }
OLDNEW
« no previous file with comments | « pkg/analyzer_plugin/tool/spec/check_all_test.dart ('k') | pkg/analyzer_plugin/tool/spec/codegen_dart_protocol.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698