| Index: utils/dartdoc/dartdoc.dart
|
| diff --git a/utils/dartdoc/dartdoc.dart b/utils/dartdoc/dartdoc.dart
|
| index e11db2fe208959e354eb896dd5648f324c4c0926..a77fb1ae3898baa7474a53c521dbb1afb548b8f5 100644
|
| --- a/utils/dartdoc/dartdoc.dart
|
| +++ b/utils/dartdoc/dartdoc.dart
|
| @@ -134,12 +134,14 @@ document(String entrypoint) {
|
| case 'corelib':
|
| world.getOrAddLibrary('dart:core');
|
| world.getOrAddLibrary('dart:coreimpl');
|
| + world.getOrAddLibrary('dart:json');
|
| world.process();
|
| break;
|
|
|
| case 'dom':
|
| world.getOrAddLibrary('dart:core');
|
| world.getOrAddLibrary('dart:coreimpl');
|
| + world.getOrAddLibrary('dart:json');
|
| world.getOrAddLibrary('dart:dom');
|
| world.process();
|
| break;
|
| @@ -147,6 +149,7 @@ document(String entrypoint) {
|
| case 'html':
|
| world.getOrAddLibrary('dart:core');
|
| world.getOrAddLibrary('dart:coreimpl');
|
| + world.getOrAddLibrary('dart:json');
|
| world.getOrAddLibrary('dart:dom');
|
| world.getOrAddLibrary('dart:html');
|
| world.process();
|
|
|