| Index: pkg/analyzer/lib/file_system/file_system.dart
 | 
| diff --git a/pkg/analyzer/lib/file_system/file_system.dart b/pkg/analyzer/lib/file_system/file_system.dart
 | 
| index b841a3689857947165178be0050dba7143f45af3..7cc99b74ae2e75e989322ac9c905738477b28661 100644
 | 
| --- a/pkg/analyzer/lib/file_system/file_system.dart
 | 
| +++ b/pkg/analyzer/lib/file_system/file_system.dart
 | 
| @@ -106,6 +106,14 @@ abstract class Folder implements Resource {
 | 
|    Resource getChild(String relPath);
 | 
|  
 | 
|    /**
 | 
| +   * Return a [File] representing a child [Resource] with the given
 | 
| +   * [relPath].  This call does not check whether a file with the given name
 | 
| +   * exists on the filesystem - client must call the [File]'s `exists` getter
 | 
| +   * to determine whether the folder actually exists.
 | 
| +   */
 | 
| +  File getChildAssumingFile(String relPath);
 | 
| +
 | 
| +  /**
 | 
|     * Return a [Folder] representing a child [Resource] with the given
 | 
|     * [relPath].  This call does not check whether a folder with the given name
 | 
|     * exists on the filesystem--client must call the [Folder]'s `exists` getter
 | 
| 
 |