| 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; | |
| 6 | |
| 7 import 'dart:convert'; | 5 import 'dart:convert'; |
| 8 | 6 |
| 9 import 'package:analyzer/exception/exception.dart'; | 7 import 'package:analyzer/exception/exception.dart'; |
| 10 import 'package:analyzer/instrumentation/instrumentation.dart'; | 8 import 'package:analyzer/instrumentation/instrumentation.dart'; |
| 11 import 'package:logging/logging.dart'; | 9 import 'package:logging/logging.dart'; |
| 12 | 10 |
| 13 import 'input_converter.dart'; | 11 import 'input_converter.dart'; |
| 14 import 'operation.dart'; | 12 import 'operation.dart'; |
| 15 | 13 |
| 16 final int COLON = ':'.codeUnitAt(0); | 14 final int COLON = ':'.codeUnitAt(0); |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 sb.writeCharCode(code); | 137 sb.writeCharCode(code); |
| 140 } | 138 } |
| 141 ++index; | 139 ++index; |
| 142 } | 140 } |
| 143 if (sb.isNotEmpty) { | 141 if (sb.isNotEmpty) { |
| 144 fields.add(sb.toString()); | 142 fields.add(sb.toString()); |
| 145 } | 143 } |
| 146 return fields; | 144 return fields; |
| 147 } | 145 } |
| 148 } | 146 } |
| OLD | NEW |