| Index: pkg/analysis_server/tool/spec/codegen_java.dart
|
| diff --git a/pkg/analysis_server/tool/spec/codegen_java.dart b/pkg/analysis_server/tool/spec/codegen_java.dart
|
| index 45f812667d06051880ac65977af4a442ccc3f240..b1e07c1a2895537d213ea6dbee2f14dd06ff8169 100644
|
| --- a/pkg/analysis_server/tool/spec/codegen_java.dart
|
| +++ b/pkg/analysis_server/tool/spec/codegen_java.dart
|
| @@ -31,7 +31,9 @@ class CodegenJavaVisitor extends HierarchicalApiVisitor with CodeGenerator {
|
| * Type references in the spec that are named something else in Java.
|
| */
|
| static const Map<String, String> _typeRenames = const {
|
| - 'bool': 'boolean',
|
| + // TODO (jwren) in some situations we want to use Boolean while other
|
| + // situations we want to use boolean...
|
| + 'bool': 'Boolean',
|
| 'FilePath': 'String',
|
| 'DebugContextId': 'String',
|
| 'object': 'Object',
|
|
|