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

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

Issue 17317002: Convert isX() methods to isX getter. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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_experimental/lib/src/generated/sdk_io.dart
diff --git a/pkg/analyzer_experimental/lib/src/generated/sdk_io.dart b/pkg/analyzer_experimental/lib/src/generated/sdk_io.dart
index 8d48bb344f419a69c6f87faf062217a2f25e54ae..5bcead2df3c2db6a43974aa70cf1698099897aa7 100644
--- a/pkg/analyzer_experimental/lib/src/generated/sdk_io.dart
+++ b/pkg/analyzer_experimental/lib/src/generated/sdk_io.dart
@@ -300,7 +300,7 @@ class DirectoryBasedDartSdk implements DartSdk {
* Return `true` if the Dartium binary is available.
* @return `true` if the Dartium binary is available
*/
- bool isDartiumInstalled() => dartiumExecutable != null;
+ bool get isDartiumInstalled => dartiumExecutable != null;
Source mapDartUri(ContentCache contentCache, String dartUri) {
SdkLibrary library = getSdkLibrary(dartUri);
if (library == null) {
« no previous file with comments | « pkg/analyzer_experimental/lib/src/generated/sdk.dart ('k') | pkg/analyzer_experimental/lib/src/generated/source.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698