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

Unified Diff: pkg/polymer_expression/test/all_tests.dart

Issue 22950008: move fancy_syntax into Dart SVN (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: more readme edits Created 7 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
Index: pkg/polymer_expression/test/all_tests.dart
diff --git a/tests/language/call_argument_inference_test.dart b/pkg/polymer_expression/test/all_tests.dart
similarity index 55%
copy from tests/language/call_argument_inference_test.dart
copy to pkg/polymer_expression/test/all_tests.dart
index 0af5537d58ddb8eacad9f37bbbb5e0adc8295f3c..bbfccba546fc1a4f168923196b7a6c4c0b53887d 100644
--- a/tests/language/call_argument_inference_test.dart
+++ b/pkg/polymer_expression/test/all_tests.dart
@@ -2,13 +2,14 @@
// 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 "package:expect/expect.dart";
+library all_tests;
-class A {
- call(a) => a is num;
-}
+import 'eval_test.dart' as eval;
+import 'parser_test.dart' as parser;
+import 'tokenizer_test.dart' as tokenizer;
main() {
- Expect.isTrue(new A().call(42));
- Expect.isFalse(new A()('foo'));
+ tokenizer.main();
+ parser.main();
+ eval.main();
}

Powered by Google App Engine
This is Rietveld 408576698