OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |