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

Unified Diff: pkg/stack_trace/lib/src/frame.dart

Issue 24249010: - Fix build. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/stack_trace/lib/src/frame.dart
===================================================================
--- pkg/stack_trace/lib/src/frame.dart (revision 27852)
+++ pkg/stack_trace/lib/src/frame.dart (working copy)
@@ -117,9 +117,9 @@
var column = null;
var columnMatch = match[4];
if (columnMatch != null) {
- col = int.parse(columnMatch);
+ column = int.parse(columnMatch);
}
- return new Frame(uri, line, col, member);
+ return new Frame(uri, line, column, member);
}
/// Parses a string representation of a Chrome/V8 stack frame.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698