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

Unified Diff: runtime/observatory/lib/repositories.dart

Issue 2119733003: Wrapping leaf nodes in non polymer elements (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Converted script-link Created 4 years, 5 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
Index: runtime/observatory/lib/repositories.dart
diff --git a/tests/language/regress_26668_test.dart b/runtime/observatory/lib/repositories.dart
similarity index 59%
copy from tests/language/regress_26668_test.dart
copy to runtime/observatory/lib/repositories.dart
index 1b329aa4a1b31e8f56c2a8750ed0923e27b3a213..0fa09d67b57e740010a8ad08fbb943bbd76b73fc 100644
--- a/tests/language/regress_26668_test.dart
+++ b/runtime/observatory/lib/repositories.dart
@@ -2,16 +2,10 @@
// 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.
-import 'dart:async';
-
-main() async {
- var myClass = new CustomClass<int>();
- await myClass.processData();
-}
+library repositories;
-class CustomClass<T> {
- Future<T> processData() async {
- return 0;
- }
-}
+import 'dart:async';
+import 'package:observatory/models.dart' as M;
+import 'package:observatory/service.dart' as S;
+part 'src/repositories/script.dart';

Powered by Google App Engine
This is Rietveld 408576698