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

Unified Diff: tests/fletchc/incremental/compiler_test_case.dart

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 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 | « tests/fletchc/incremental/common.dart ('k') | tests/fletchc/incremental/experimental_mode.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/fletchc/incremental/compiler_test_case.dart
diff --git a/tests/fletchc/incremental/compiler_test_case.dart b/tests/fletchc/incremental/compiler_test_case.dart
deleted file mode 100644
index 26ca4d6804feea4409ef7813193424d4786d1a64..0000000000000000000000000000000000000000
--- a/tests/fletchc/incremental/compiler_test_case.dart
+++ /dev/null
@@ -1,48 +0,0 @@
-// Copyright (c) 2014, 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.
-
-// Helper class for writing compiler tests.
-library fletchc.test.compiler_test_case;
-
-import 'dart:async' show
- Future;
-
-export 'dart:async' show
- Future;
-
-export 'package:expect/expect.dart' show
- Expect;
-
-import 'package:compiler/src/elements/elements.dart' show
- LibraryElement;
-
-export 'package:compiler/src/elements/elements.dart' show
- LibraryElement;
-
-import 'package:fletchc/fletch_compiler.dart' show
- StringOrUri;
-
-export 'package:fletchc/fletch_compiler.dart' show
- StringOrUri;
-
-const String SCHEME = 'org.trydart.compiler-test-case';
-
-Uri customUri(String path) => Uri.parse('$SCHEME:/$path');
-
-abstract class CompilerTestCase {
- final Uri scriptUri;
-
- CompilerTestCase([@StringOrUri scriptUri])
- : this.scriptUri = makeScriptUri(scriptUri);
-
- static Uri makeScriptUri(@StringOrUri scriptUri) {
- if (scriptUri == null) return customUri('main.dart');
- if (scriptUri is Uri) return scriptUri;
- return customUri(scriptUri as String);
- }
-
- Future run();
-
- String toString() => 'CompilerTestCase($scriptUri)';
-}
« no previous file with comments | « tests/fletchc/incremental/common.dart ('k') | tests/fletchc/incremental/experimental_mode.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698