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

Unified Diff: pkg/stack_trace/lib/stack_trace.dart

Issue 13102003: Add a library for manipulating stack traces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 7 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/stack_trace/lib/src/trace.dart ('k') | pkg/stack_trace/pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/stack_trace/lib/stack_trace.dart
diff --git a/tests/language/duplicate_interface_lib.dart b/pkg/stack_trace/lib/stack_trace.dart
similarity index 64%
copy from tests/language/duplicate_interface_lib.dart
copy to pkg/stack_trace/lib/stack_trace.dart
index 4602bcda6152b8e7e29c5e470df0751f3bf7e0e8..455dd57aea36ceca743b02df17b5082db8d20bf4 100644
--- a/tests/language/duplicate_interface_lib.dart
+++ b/pkg/stack_trace/lib/stack_trace.dart
@@ -1,11 +1,11 @@
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-// Check fail because of cycles in super class relationship.
-library Interface_Lib;
+library stack_trace;
-class InterfA { }
-
-class InterfB { }
+import 'src/trace.dart';
+import 'src/frame.dart';
+export 'src/trace.dart';
+export 'src/frame.dart';
« no previous file with comments | « pkg/stack_trace/lib/src/trace.dart ('k') | pkg/stack_trace/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698