| Index: pkg/analysis_server/tool/spec/codegen_tools.dart
|
| diff --git a/pkg/analysis_server/tool/spec/codegen_tools.dart b/pkg/analysis_server/tool/spec/codegen_tools.dart
|
| index b72ffba2314e6f43e46ca74d8c76b5567bffe268..aff38861d9e0a19e2c6cb742e5585d233ea57f2f 100644
|
| --- a/pkg/analysis_server/tool/spec/codegen_tools.dart
|
| +++ b/pkg/analysis_server/tool/spec/codegen_tools.dart
|
| @@ -306,6 +306,7 @@ typedef String FileContentsComputer();
|
| typedef Map<String, FileContentsComputer> DirectoryContentsComputer();
|
|
|
| abstract class GeneratedContent {
|
| + FileSystemEntity get outputFile;
|
| bool check();
|
| void generate();
|
| }
|
| @@ -370,7 +371,7 @@ class GeneratedDirectory extends GeneratedContent {
|
| /**
|
| * Get a Directory object representing the output directory.
|
| */
|
| - Directory get outputDir => new Directory(joinAll(posix.split(outputDirPath)));
|
| + Directory get outputFile => new Directory(joinAll(posix.split(outputDirPath)));
|
|
|
| @override
|
| bool check() {
|
|
|