Index: tools/testing/dart/status_file_parser.dart |
diff --git a/tools/testing/dart/status_file_parser.dart b/tools/testing/dart/status_file_parser.dart |
index 58e24831d55f2c2d489390d7f14cbcd02d3cc9b1..89cd4c4eb97c77e40e65f0654927b830c1babe55 100644 |
--- a/tools/testing/dart/status_file_parser.dart |
+++ b/tools/testing/dart/status_file_parser.dart |
@@ -66,7 +66,7 @@ void ReadConfigurationInto(path, sections, onDone) { |
sections.add(current); |
String prefix = ""; |
- lines.lineHandler = () { |
+ lines.onLine = () { |
String line; |
while ((line = lines.readLine()) != null) { |
Match match = StripComment.firstMatch(line); |
@@ -106,7 +106,7 @@ void ReadConfigurationInto(path, sections, onDone) { |
} |
}; |
- lines.closeHandler = () { |
+ lines.onClosed = () { |
onDone(); |
}; |
} |