| Index: lib/src/dartdevc/dartdevc.dart
|
| diff --git a/lib/src/dartdevc/dartdevc.dart b/lib/src/dartdevc/dartdevc.dart
|
| index 9d6fda38bf8a1a47b0b45ad7d399d2eef53bd114..2d055611558815ad94404b04282f3c376ce55bb2 100644
|
| --- a/lib/src/dartdevc/dartdevc.dart
|
| +++ b/lib/src/dartdevc/dartdevc.dart
|
| @@ -151,12 +151,12 @@ if(!window.\$dartLoader) {
|
| window.\$dartLoader = {
|
| moduleIdToUrl: new Map(),
|
| urlToModuleId: new Map(),
|
| - rootDirectories: new Set(),
|
| + rootDirectories: new Array(),
|
| };
|
| }
|
|
|
| let customModulePaths = {};
|
| -window.\$dartLoader.rootDirectories.add(_currentDirectory);
|
| +window.\$dartLoader.rootDirectories.push(_currentDirectory);
|
| for (let moduleName of Object.getOwnPropertyNames(modulePaths)) {
|
| let modulePath = modulePaths[moduleName];
|
| if (modulePath != moduleName) {
|
|
|