Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 library vm_trace; | |
| 6 | |
| 7 import 'frame.dart'; | |
| 8 import 'utils.dart'; | |
| 9 | |
| 10 /// An implementation of [StackTrace] that emulates the behavior of the VM's | |
| 11 /// implementation. | |
| 12 /// | |
| 13 /// In particular, when [toString] is called, this returns a string in the VM's | |
| 14 /// stack trace format. | |
| 15 class VmTrace implements StackTrace { | |
|
Jennifer Messerly
2013/06/28 21:48:07
VMTrace?
nweiz
2013/06/28 22:23:54
Done.
| |
| 16 /// The stack frames that comprise this stack trace. | |
| 17 final List<Frame> frames; | |
| 18 | |
| 19 VmTrace(this.frames); | |
| 20 | |
| 21 String toString() { | |
| 22 var i = 1; | |
| 23 return frames.map((frame) { | |
| 24 var number = padRight("#${i++}", 8); | |
| 25 var member = frame.member.replaceAll("<fn>", "<anonymous closure>"); | |
| 26 var line = frame.line == null ? 0 : frame.line; | |
| 27 var column = frame.column == null ? 0 : frame.column; | |
| 28 return "$number$member (${frame.uri}:$line:$column)\n"; | |
| 29 }).join(); | |
| 30 } | |
| 31 } | |
| OLD | NEW |