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

Unified Diff: tests/compiler/dart2js/mirrors_helper.dart

Issue 10827394: Change line endings from Windows to Unix (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebased Created 8 years, 4 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 | « tests/compiler/dart2js/begin_end_token_test.dart ('k') | tests/compiler/dart2js/mirrors_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/mirrors_helper.dart
diff --git a/tests/compiler/dart2js/mirrors_helper.dart b/tests/compiler/dart2js/mirrors_helper.dart
index b2725ac3e8cba7c8ac5ce01d5bdc50ed9c84c89e..6d2e44462052639d287391cd9162183050d619f8 100644
--- a/tests/compiler/dart2js/mirrors_helper.dart
+++ b/tests/compiler/dart2js/mirrors_helper.dart
@@ -1,48 +1,48 @@
-// Copyright (c) 2012, 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.
-
-/**
- * This file is read by 'mirrors_test.dart'.
- */
-
-#library('mirrors_helper');
-
-typedef E Func<E,F extends Foo>(F f);
-
-main() {
-
-}
-
-class Foo {
-
-}
-
-interface Bar<E> {
-
-}
-
-class Baz<E,F extends Foo> implements Bar<E> {
- Baz();
- const Baz.named();
- factory Baz.factory() => new Baz<E,F>();
-
- static method1(e) {}
- void method2(E e, [F f = null]) {}
- Baz<E,F> method3(E func1(F f), Func<E,F> func2) => null;
-
- bool operator==(Object other) => false;
- int operator negate() => 0;
-}
-
-class Boz extends Foo {
- var field1;
- int _field2;
- final String field3 = "field3";
-
- int get field2() => _field2;
- void set field2(int value) {
- _field2 = value;
- }
-}
-
+// Copyright (c) 2012, 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.
+
+/**
+ * This file is read by 'mirrors_test.dart'.
+ */
+
+#library('mirrors_helper');
+
+typedef E Func<E,F extends Foo>(F f);
+
+main() {
+
+}
+
+class Foo {
+
+}
+
+interface Bar<E> {
+
+}
+
+class Baz<E,F extends Foo> implements Bar<E> {
+ Baz();
+ const Baz.named();
+ factory Baz.factory() => new Baz<E,F>();
+
+ static method1(e) {}
+ void method2(E e, [F f = null]) {}
+ Baz<E,F> method3(E func1(F f), Func<E,F> func2) => null;
+
+ bool operator==(Object other) => false;
+ int operator negate() => 0;
+}
+
+class Boz extends Foo {
+ var field1;
+ int _field2;
+ final String field3 = "field3";
+
+ int get field2() => _field2;
+ void set field2(int value) {
+ _field2 = value;
+ }
+}
+
« no previous file with comments | « tests/compiler/dart2js/begin_end_token_test.dart ('k') | tests/compiler/dart2js/mirrors_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698