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

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: 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 * 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';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698