Commit ae905811 authored by Michael Goderbauer's avatar Michael Goderbauer Committed by GitHub

Fix build (#11186)

Was broken by https://github.com/flutter/flutter/commit/dba29aa0fce684b201c6b03efc73ba607c7b507b, which apprently has been pushed directly to master without running through Travis?
parent dba29aa0
......@@ -15,7 +15,7 @@ final List<String> _configurationConstants = <String>['dart.library.io'];
String _dottedNameToString(analyzer.DottedName dottedName) {
String result = '';
for (var identifier in dottedName.components) {
for (analyzer.SimpleIdentifier identifier in dottedName.components) {
if (result.isEmpty) {
result += identifier.token.lexeme;
} else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment