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

Unified Diff: utils/tests/template/test_list.dart

Issue 137013002: Removed obsolete code (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Removed libraries not used Created 6 years, 11 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 | « utils/tests/template/test_complex2.dart ('k') | utils/tests/template/test_nested.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/tests/template/test_list.dart
diff --git a/utils/tests/template/test_list.dart b/utils/tests/template/test_list.dart
deleted file mode 100644
index 7f2f312bd9dc0f57c61e657a5b8b7bf48d48fb58..0000000000000000000000000000000000000000
--- a/utils/tests/template/test_list.dart
+++ /dev/null
@@ -1,25 +0,0 @@
-// Sample for #each templates:
-//
-// applications.tmpl
-
-import 'dart:html';
-part 'applications.dart';
-
-class Product {
- String name;
- int users;
-
- Product(this.name, this.users);
-}
-
-void main() {
- List<Product> products = [];
- products.add(new Product("Gmail", 75000000));
- products.add(new Product("Talk", 5000000));
- products.add(new Product("iGoogle", 2000000));
- products.add(new Product("Dart", 2000));
-
- var form = new Applications(products);
-
- document.body.elements.add(form.root);
-}
« no previous file with comments | « utils/tests/template/test_complex2.dart ('k') | utils/tests/template/test_nested.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698