OLD | NEW |
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 /** |
| 6 * ## Installing ## |
| 7 * |
| 8 * Use [pub][] to install this package. Add the following to your `pubspec.yaml` |
| 9 * file. |
| 10 * |
| 11 * dependencies: |
| 12 * stack_trace: any |
| 13 * |
| 14 * And then run `pub install`. |
| 15 * |
| 16 * [pub]: http://pub.dartlang.org |
| 17 */ |
5 library stack_trace; | 18 library stack_trace; |
6 | 19 |
7 export 'src/trace.dart'; | 20 export 'src/trace.dart'; |
8 export 'src/frame.dart'; | 21 export 'src/frame.dart'; |
OLD | NEW |