| Index: samples/third_party/dromaeo/common/common.dart
|
| diff --git a/samples/third_party/dromaeo/common/common.dart b/samples/third_party/dromaeo/common/common.dart
|
| index 28d27ce221331a1fe36613854f20d5640dd9a394..14a8a78b656d6dc438d05087d420ef36b90b0ed5 100644
|
| --- a/samples/third_party/dromaeo/common/common.dart
|
| +++ b/samples/third_party/dromaeo/common/common.dart
|
| @@ -2,9 +2,9 @@
|
| // 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('common.dart');
|
| -#import('dart:math', prefix: 'Math');
|
| -#source('BenchUtil.dart');
|
| -#source('Interval.dart');
|
| -#source('JSON.dart');
|
| -#source('Math2.dart');
|
| +library common;
|
| +import 'dart:math' as Math;
|
| +part 'BenchUtil.dart';
|
| +part 'Interval.dart';
|
| +part 'JSON.dart';
|
| +part 'Math2.dart';
|
|
|