| OLD | NEW |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, 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 'dart:io'; | 5 import 'dart:io'; |
| 6 import 'package:async_helper/async_helper.dart'; | 6 import 'package:async_helper/async_helper.dart'; |
| 7 import 'package:compiler/src/closure.dart'; | 7 import 'package:compiler/src/closure.dart'; |
| 8 import 'package:compiler/src/common.dart'; | 8 import 'package:compiler/src/common.dart'; |
| 9 import 'package:compiler/src/compiler.dart'; | 9 import 'package:compiler/src/compiler.dart'; |
| 10 import 'package:compiler/src/diagnostics/diagnostic_listener.dart'; | 10 import 'package:compiler/src/diagnostics/diagnostic_listener.dart'; |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 String computeMemberValue(ir.Member member) { | 122 String computeMemberValue(ir.Member member) { |
| 123 // TODO(johnniwinther,efortuna): Collect data for the member | 123 // TODO(johnniwinther,efortuna): Collect data for the member |
| 124 // (has thisLocal, has box, etc.). | 124 // (has thisLocal, has box, etc.). |
| 125 return null; | 125 return null; |
| 126 } | 126 } |
| 127 } | 127 } |
| 128 | 128 |
| 129 /// Compute a string representation of the data stored for [local] in [info]. | 129 /// Compute a string representation of the data stored for [local] in [info]. |
| 130 String computeLocalValue(ClosureRepresentationInfo info, Local local) { | 130 String computeLocalValue(ClosureRepresentationInfo info, Local local) { |
| 131 StringBuffer sb = new StringBuffer(); | 131 StringBuffer sb = new StringBuffer(); |
| 132 if (info.variableIsUsedInTryOrSync(local)) { | 132 if (info.localIsUsedInTryOrSync(local)) { |
| 133 sb.write('inTry'); | 133 sb.write('inTry'); |
| 134 } | 134 } |
| 135 // TODO(johnniwinther,efortuna): Add more info (captured, boxed etc.). | 135 // TODO(johnniwinther,efortuna): Add more info (captured, boxed etc.). |
| 136 return sb.toString(); | 136 return sb.toString(); |
| 137 } | 137 } |
| OLD | NEW |