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

Side by Side Diff: utils/tests/pub/command_line_config.dart

Issue 14071002: Added new version of reduce. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Removed more uses of max, and a few bugs. Created 7 years, 8 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
« pkg/stack_trace/lib/src/trace.dart ('K') | « utils/pub/package.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 command_line_config; 5 library command_line_config;
6 6
7 import 'dart:io'; 7 import 'dart:io';
8 import 'dart:math';
8 9
9 import 'package:pathos/path.dart' as path; 10 import 'package:pathos/path.dart' as path;
10 import 'package:unittest/unittest.dart'; 11 import 'package:unittest/unittest.dart';
11 import '../../pub/utils.dart'; 12 import '../../pub/utils.dart';
12 13
13 /// Gets a "special" string (ANSI escape or Unicode). On Windows, returns 14 /// Gets a "special" string (ANSI escape or Unicode). On Windows, returns
14 /// something else since those aren't supported. 15 /// something else since those aren't supported.
15 String _getSpecial(String color, [String onWindows = '']) { 16 String _getSpecial(String color, [String onWindows = '']) {
16 // No ANSI escapes on windows. 17 // No ANSI escapes on windows.
17 if (Platform.operatingSystem == 'windows') return onWindows; 18 if (Platform.operatingSystem == 'windows') return onWindows;
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 // Parse out each stack entry. 85 // Parse out each stack entry.
85 var stack = []; 86 var stack = [];
86 for (var line in stackTrace.split('\n')) { 87 for (var line in stackTrace.split('\n')) {
87 if (line.trim() == '') continue; 88 if (line.trim() == '') continue;
88 stack.add(new _StackFrame(line)); 89 stack.add(new _StackFrame(line));
89 } 90 }
90 91
91 if (stack.length == 0) return; 92 if (stack.length == 0) return;
92 93
93 // Figure out the longest path so we know how much to pad. 94 // Figure out the longest path so we know how much to pad.
94 int longest = stack.map((frame) => frame.location.length).max(); 95 int longest = stack.map((frame) => frame.location.length).reduce(max);
95 96
96 // Print out the stack trace nicely formatted. 97 // Print out the stack trace nicely formatted.
97 for (var frame in stack) { 98 for (var frame in stack) {
98 print(' ${_padLeft(frame.location, longest)} ${frame.member}'); 99 print(' ${_padLeft(frame.location, longest)} ${frame.member}');
99 } 100 }
100 101
101 print(''); 102 print('');
102 } 103 }
103 104
104 String _padLeft(String string, int length) { 105 String _padLeft(String string, int length) {
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 var library = match[2]; 160 var library = match[2];
160 if (!isCore) { 161 if (!isCore) {
161 // Make the library path relative to the entrypoint. 162 // Make the library path relative to the entrypoint.
162 library = path.relative(library); 163 library = path.relative(library);
163 } 164 }
164 165
165 var member = match[1].replaceAll("<anonymous closure>", _lambda); 166 var member = match[1].replaceAll("<anonymous closure>", _lambda);
166 return new _StackFrame._(isCore, library, match[3], match[4], member); 167 return new _StackFrame._(isCore, library, match[3], match[4], member);
167 } 168 }
168 } 169 }
OLDNEW
« pkg/stack_trace/lib/src/trace.dart ('K') | « utils/pub/package.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698