| Index: samples/ui_lib/observable/observable.dart
|
| diff --git a/samples/ui_lib/observable/observable.dart b/samples/ui_lib/observable/observable.dart
|
| index 48b42f4fc4737610b187885ea3a83bdba11de928..c5a040142f16a0d4bd3a251004a2ec62d5b372f5 100644
|
| --- a/samples/ui_lib/observable/observable.dart
|
| +++ b/samples/ui_lib/observable/observable.dart
|
| @@ -2,12 +2,12 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -#library('observable');
|
| +library observable;
|
|
|
| -#import('dart:coreimpl');
|
| +import 'dart:coreimpl';
|
|
|
| -#source('ChangeEvent.dart');
|
| -#source('EventBatch.dart');
|
| +part 'ChangeEvent.dart';
|
| +part 'EventBatch.dart';
|
|
|
| /**
|
| * An object whose changes are tracked and who can issue events notifying how it
|
|
|