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

Side by Side Diff: pkg/analysis_server/lib/src/services/correction/strings.dart

Issue 484733003: Import analysis_services.dart into analysis_server.dart. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 services.src.correction.strings; 5 library services.src.correction.strings;
6 6
7 7
8 /** 8 /**
9 * "$" 9 * "$"
10 */ 10 */
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 return str; 101 return str;
102 } 102 }
103 103
104 String repeat(String s, int n) { 104 String repeat(String s, int n) {
105 StringBuffer sb = new StringBuffer(); 105 StringBuffer sb = new StringBuffer();
106 for (int i = 0; i < n; i++) { 106 for (int i = 0; i < n; i++) {
107 sb.write(s); 107 sb.write(s);
108 } 108 }
109 return sb.toString(); 109 return sb.toString();
110 } 110 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/lib/src/services/correction/status.dart ('k') | pkg/analysis_server/lib/src/services/correction/util.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698