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

Unified Diff: pkg/intl/test/data_directory.dart

Issue 814113004: Pull args, intl, logging, shelf, and source_maps out of the SDK. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also csslib. Created 6 years 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 | « pkg/intl/test/bidi_utils_test.dart ('k') | pkg/intl/test/date_time_format_file_even_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/intl/test/data_directory.dart
diff --git a/pkg/intl/test/data_directory.dart b/pkg/intl/test/data_directory.dart
deleted file mode 100644
index 3194364a0f58eb82a7aa073f34e00acd6af4a4d1..0000000000000000000000000000000000000000
--- a/pkg/intl/test/data_directory.dart
+++ /dev/null
@@ -1,56 +0,0 @@
-// 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.
-
-/**
- * A utility function for test and tools that compensates (at least for very
- * simple cases) for file-dependent programs being run from different
- * directories. The important cases are
- * -running in the directory that contains the test itself, i.e.
- * pkg/intl/test or a sub-directory.
- * -running in pkg/intl, which is where the editor will run things by default
- * -running in the top-level dart directory, where the build tests run
- */
-library data_directory;
-
-import "dart:io";
-import "package:path/path.dart" as path;
-
-String get dataDirectory {
- return path.join(intlDirectory, datesRelativeToIntl);
-}
-
-String get intlDirectory {
- var components = path.split(path.current);
- var foundIntlDir = false;
-
- /**
- * A helper function that returns false (indicating we should stop iterating)
- * if the argument to the previous call was 'intl' and also sets
- * the outer scope [foundIntlDir].
- */
- bool checkForIntlDir(String each) {
- if (foundIntlDir) return false;
- foundIntlDir = (each == 'intl') ? true : false;
- return true;
- }
-
- var pathUpToIntl = components.takeWhile(checkForIntlDir).toList();
- // We assume that if we're not somewhere underneath the intl hierarchy
- // that we are in the dart root.
- if (foundIntlDir) {
- return path.joinAll(pathUpToIntl);
- } else {
- if (new Directory(path.join(path.current, 'pkg', 'intl')).existsSync()) {
- return path.join(path.current, 'pkg', 'intl');
- }
- if (new Directory(
- path.join(path.current, '..', 'pkg', 'intl')).existsSync()) {
- return path.join(path.current, '..', 'pkg', 'intl');
- }
- }
- throw new UnsupportedError(
- 'Cannot find ${path.join('pkg','intl')} directory.');
-}
-
-String get datesRelativeToIntl => path.join('lib', 'src', 'data', 'dates');
« no previous file with comments | « pkg/intl/test/bidi_utils_test.dart ('k') | pkg/intl/test/date_time_format_file_even_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698