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

Side by Side Diff: pkg/stack_trace/lib/stack_trace.dart

Issue 14188048: add installation instructions to pkg packages (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweaks from review 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
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 /**
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 * Then run `pub install`.
15 *
16 * For more information, see the
17 * [stack_trace package on pub.dartlang.org][pkg].
18 *
19 * [pub]: http://pub.dartlang.org
20 * [pkg]: http://pub.dartlang.org/packages/stack_trace
21 */
5 library stack_trace; 22 library stack_trace;
6 23
7 export 'src/trace.dart'; 24 export 'src/trace.dart';
8 export 'src/frame.dart'; 25 export 'src/frame.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698