| Index: samples/ui_lib/layout/layout.dart
|
| diff --git a/samples/ui_lib/layout/layout.dart b/samples/ui_lib/layout/layout.dart
|
| index f3599fb4019aa7a84c22cc0dfdb1524391523ce1..39e662cf1e057c8b835bc359a269e89810414fca 100644
|
| --- a/samples/ui_lib/layout/layout.dart
|
| +++ b/samples/ui_lib/layout/layout.dart
|
| @@ -2,17 +2,17 @@
|
| // 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('layout.dart');
|
| +library layout;
|
|
|
| -#import('dart:html');
|
| -#import('dart:math', prefix: 'Math');
|
| +import 'dart:html';
|
| +import 'dart:math' as Math;
|
|
|
| -#import('../base/base.dart');
|
| -#import('../util/utilslib.dart');
|
| +import '../base/base.dart';
|
| +import '../util/utilslib.dart';
|
|
|
| -#source('GridLayout.dart');
|
| -#source('GridLayoutParams.dart');
|
| -#source('GridLayoutParser.dart');
|
| -#source('GridTracks.dart');
|
| -#source('SizingFunctions.dart');
|
| -#source('ViewLayout.dart');
|
| +part 'GridLayout.dart';
|
| +part 'GridLayoutParams.dart';
|
| +part 'GridLayoutParser.dart';
|
| +part 'GridTracks.dart';
|
| +part 'SizingFunctions.dart';
|
| +part 'ViewLayout.dart';
|
|
|