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

Side by Side Diff: tests/standalone/io/process_test_util.dart

Issue 12473003: Remove deprecated StringBuffer.add, addAll and addCharCode. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 process_test_util; 5 library process_test_util;
6 6
7 import "dart:io"; 7 import "dart:io";
8 8
9 String getPlatformExecutableExtension() { 9 String getPlatformExecutableExtension() {
10 var os = Platform.operatingSystem; 10 var os = Platform.operatingSystem;
11 if (os == 'windows') return '.exe'; 11 if (os == 'windows') return '.exe';
12 return ''; // Linux and Mac OS. 12 return ''; // Linux and Mac OS.
13 } 13 }
14 14
15 String getProcessTestFileName() { 15 String getProcessTestFileName() {
16 var extension = getPlatformExecutableExtension(); 16 var extension = getPlatformExecutableExtension();
17 var executable = new Options().executable; 17 var executable = new Options().executable;
18 var dirIndex = executable.lastIndexOf('dart$extension'); 18 var dirIndex = executable.lastIndexOf('dart$extension');
19 var buffer = new StringBuffer(executable.substring(0, dirIndex)); 19 var buffer = new StringBuffer(executable.substring(0, dirIndex));
20 buffer.add('process_test$extension'); 20 buffer.write('process_test$extension');
21 return buffer.toString(); 21 return buffer.toString();
22 } 22 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698