Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1074)

Unified Diff: sdk/lib/_internal/compiler/implementation/mirrors/mirrors.dart

Issue 12446003: Support full dart2js output for dartdoc/apidoc. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sdk/lib/_internal/compiler/implementation/mirrors/mirrors.dart
diff --git a/sdk/lib/_internal/compiler/implementation/mirrors/mirrors.dart b/sdk/lib/_internal/compiler/implementation/mirrors/mirrors.dart
index 6f5189e973aebc204e5370729b5d73ae79f50216..dace29e2a59a66acfc5ea06aede084a027cd49f2 100644
--- a/sdk/lib/_internal/compiler/implementation/mirrors/mirrors.dart
+++ b/sdk/lib/_internal/compiler/implementation/mirrors/mirrors.dart
@@ -12,44 +12,6 @@ import 'dart:uri';
import 'dart2js_mirror.dart';
/**
- * [Compilation] encapsulates the compilation of a program.
- */
-abstract class Compilation {
- /**
- * Creates a new compilation which has [script] as its entry point.
- */
- factory Compilation(Path script,
- Path libraryRoot,
- [Path packageRoot,
- List<String> opts = const <String>[]]) {
- return new Dart2JsCompilation(script, libraryRoot, packageRoot, opts);
- }
-
- /**
- * Creates a new compilation which consists of a set of libraries, but which
- * has no entry point. This compilation cannot generate output but can only
- * be used for static inspection of the source code.
- */
- factory Compilation.library(List<Path> libraries,
- Path libraryRoot,
- [Path packageRoot,
- List<String> opts = const []]) {
- return new Dart2JsCompilation.library(libraries, libraryRoot,
- packageRoot, opts);
- }
-
- /**
- * Returns the mirror system for this compilation.
- */
- final MirrorSystem mirrors;
-
- /**
- * Returns a future for the compiled JavaScript code.
- */
- Future<String> compileToJavaScript();
-}
-
-/**
* The main interface for the whole mirror system.
*/
abstract class MirrorSystem {

Powered by Google App Engine
This is Rietveld 408576698