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

Unified Diff: pkg/analyzer/lib/src/generated/sdk_io.dart

Issue 1001403002: Remove the old formatter from analyzer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 9 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/analyzer/lib/src/generated/sdk_io.dart
diff --git a/pkg/analyzer/lib/src/generated/sdk_io.dart b/pkg/analyzer/lib/src/generated/sdk_io.dart
index ff105f09261d54cd9cc1c4ee25b6d2a360627086..c962d2087944b4bab142f4b6a918e6e95fad8d9a 100644
--- a/pkg/analyzer/lib/src/generated/sdk_io.dart
+++ b/pkg/analyzer/lib/src/generated/sdk_io.dart
@@ -67,16 +67,6 @@ class DirectoryBasedDartSdk implements DartSdk {
static String _DART2JS_EXECUTABLE_NAME_WIN = "dart2js.bat";
/**
- * The name of the dart formatter executable on non-windows operating systems.
- */
- static String _DARTFMT_EXECUTABLE_NAME = "dartfmt";
-
- /**
- * The name of the dart formatter executable on windows operating systems.
- */
- static String _DARTFMT_EXECUTABLE_NAME_WIN = "dartfmt.bat";
-
- /**
* The name of the file containing the Dartium executable on Linux.
*/
static String _DARTIUM_EXECUTABLE_NAME_LINUX = "chrome";
@@ -276,21 +266,6 @@ class DirectoryBasedDartSdk implements DartSdk {
}
/**
- * Return the file containing the dart formatter executable, or `null` if it
- * does not exist.
- */
- JavaFile get dartFmtExecutable {
- if (_dartFmtExecutable == null) {
- _dartFmtExecutable = _verifyExecutable(new JavaFile.relative(
- new JavaFile.relative(_sdkDirectory, _BIN_DIRECTORY_NAME),
- OSUtilities.isWindows()
- ? _DARTFMT_EXECUTABLE_NAME_WIN
- : _DARTFMT_EXECUTABLE_NAME));
- }
- return _dartFmtExecutable;
- }
-
- /**
* Return the name of the file containing the Dartium executable.
*/
String get dartiumBinaryName {

Powered by Google App Engine
This is Rietveld 408576698