| Index: samples/ui_lib/view/view.dart
|
| diff --git a/samples/ui_lib/view/view.dart b/samples/ui_lib/view/view.dart
|
| index 52f0765251280d3e1003cbd07a7fa663a02b43c3..bcc0b4f81ded52bd0caaf74cc85e54eb7bf96321 100644
|
| --- a/samples/ui_lib/view/view.dart
|
| +++ b/samples/ui_lib/view/view.dart
|
| @@ -2,21 +2,21 @@
|
| // 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("view");
|
| +library view;
|
|
|
| -#import('dart:html');
|
| -#import('dart:math', prefix: 'Math');
|
| +import 'dart:html';
|
| +import 'dart:math' as Math;
|
|
|
| -#import('../base/base.dart');
|
| -#import('../observable/observable.dart');
|
| -#import('../touch/touch.dart');
|
| -#import('../layout/layout.dart');
|
| +import '../base/base.dart';
|
| +import '../observable/observable.dart';
|
| +import '../touch/touch.dart';
|
| +import '../layout/layout.dart';
|
|
|
| -#source('CompositeView.dart');
|
| -#source('ConveyorView.dart');
|
| -#source('MeasureText.dart');
|
| -#source('PagedViews.dart');
|
| -#source('SliderMenu.dart');
|
| +part 'CompositeView.dart';
|
| +part 'ConveyorView.dart';
|
| +part 'MeasureText.dart';
|
| +part 'PagedViews.dart';
|
| +part 'SliderMenu.dart';
|
|
|
|
|
| // TODO(rnystrom): Note! This class is undergoing heavy construction. It will
|
|
|