Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(759)

Side by Side Diff: pkg/analysis_server/benchmark/integration/instrumentation_input_converter.dart

Issue 2884233004: Remove some more library directives (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698