| Index: samples/todomvc/dart/todomvc_service.dart
|
| diff --git a/samples/todomvc/dart/todomvc_service.dart b/samples/todomvc/dart/todomvc_service.dart
|
| index a4f9cc8171a2d3a2d1d3ee25c15d55c9103225ae..4820a1ca766beb02d01164e56e63790a21114360 100644
|
| --- a/samples/todomvc/dart/todomvc_service.dart
|
| +++ b/samples/todomvc/dart/todomvc_service.dart
|
| @@ -12,7 +12,8 @@ import "package:service/struct.dart";
|
|
|
| final Channel _channel = new Channel();
|
| final Port _port = new Port(_channel);
|
| -final Foreign _postResult = Foreign.lookup("PostResultToService");
|
| +final ForeignFunction _postResult =
|
| + ForeignLibrary.main.lookup("PostResultToService");
|
|
|
| bool _terminated = false;
|
| TodoMVCService _impl;
|
|
|