| 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 part of dart.core; | |
| 6 | |
| 7 /** | |
| 8 * An interface implemented by all stack trace objects. | |
| 9 * | |
| 10 * A [StackTrace] is intended to convey information to the user about the call | |
| 11 * sequence that triggered an exception. | |
| 12 * | |
| 13 * These objects are created by the runtime, it is not possible to create | |
| 14 * them programmatically. | |
| 15 */ | |
| 16 abstract class StackTrace { | |
| 17 /** | |
| 18 * Returns a [String] representation of the stack trace. | |
| 19 * | |
| 20 * The string represents the full stack trace starting from | |
| 21 * the point where a throw ocurred to the top of the current call sequence. | |
| 22 * | |
| 23 * The exact format of the string representation is not final. | |
| 24 */ | |
| 25 String toString(); | |
| 26 } | |
| 27 | |
| OLD | NEW |