We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61cb8a4 commit 11db903Copy full SHA for 11db903
dwds/lib/src/utilities/dart_uri.dart
@@ -170,9 +170,13 @@ class DartUri {
170
/// directory of the tests is actually the main dwds directory.
171
static String get currentDirectory => _currentDirectory;
172
173
+ // TODO(srujzs): This is temporary to debug test failures and avoid analysis
174
+ // issues. Remove.
175
+ static bool tmp = false;
176
+
177
static set currentDirectory(String newDir) {
178
_currentDirectory = newDir;
- _currentDirectoryUri = '${p.toUri(newDir)}';
179
+ if (tmp) _currentDirectoryUri = '${p.toUri(newDir)}';
180
}
181
182
static String _currentDirectoryUri = '${p.toUri(currentDirectory)}';
0 commit comments