Skip to content

Commit

Permalink
Another try fixing the dev compiler.
Browse files Browse the repository at this point in the history
  • Loading branch information
renggli committed Apr 5, 2016
1 parent 9224d74 commit 6c636bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/lispshell/lispshell.dart
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ void main(List<String> arguments) {
if (interactiveMode || files.isEmpty) {
var input = stdin
.transform(SYSTEM_ENCODING.decoder as StreamTransformer<List<int>, String>)
.transform(new LineSplitter() as Converter<String, List<String>>);
.transform(new LineSplitter() as StreamTransformer<String, List<String>>);
evalInteractive(lispParser, environment, input as Stream<String>, stdout, stderr);
}
}

0 comments on commit 6c636bd

Please sign in to comment.