| Index: samples/dartcombat/dartcombatlib.dart
|
| diff --git a/samples/dartcombat/dartcombatlib.dart b/samples/dartcombat/dartcombatlib.dart
|
| index 71537f62e8407cd20c47f43b0ca53e49adb68527..3c85c85e92a658556fc9aa88006cd24048b0cc34 100644
|
| --- a/samples/dartcombat/dartcombatlib.dart
|
| +++ b/samples/dartcombat/dartcombatlib.dart
|
| @@ -2,14 +2,14 @@
|
| // 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('dartcombatlib');
|
| +library dartcombatlib;
|
|
|
| -#import('dart:isolate');
|
| -#import('dart:html');
|
| -#import('dart:math', prefix: 'Math');
|
| +import 'dart:isolate';
|
| +import 'dart:html';
|
| +import 'dart:math' as Math;
|
|
|
| -#source('setup.dart');
|
| -#source('grids.dart');
|
| -#source('player.dart');
|
| -#source('state.dart');
|
| -#source('views.dart');
|
| +part 'setup.dart';
|
| +part 'grids.dart';
|
| +part 'player.dart';
|
| +part 'state.dart';
|
| +part 'views.dart';
|
|
|