| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 input.transformer.instrumentation; | 5 library input.transformer.instrumentation; |
| 6 | 6 |
| 7 import 'dart:convert'; | 7 import 'dart:convert'; |
| 8 | 8 |
| 9 import 'package:analyzer/src/generated/java_engine.dart'; | 9 import 'package:analyzer/src/generated/java_engine.dart'; |
| 10 import 'package:analyzer/instrumentation/instrumentation.dart'; | 10 import 'package:analyzer/instrumentation/instrumentation.dart'; |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 sb.writeCharCode(code); | 141 sb.writeCharCode(code); |
| 142 } | 142 } |
| 143 ++index; | 143 ++index; |
| 144 } | 144 } |
| 145 if (sb.isNotEmpty) { | 145 if (sb.isNotEmpty) { |
| 146 fields.add(sb.toString()); | 146 fields.add(sb.toString()); |
| 147 } | 147 } |
| 148 return fields; | 148 return fields; |
| 149 } | 149 } |
| 150 } | 150 } |
| OLD | NEW |