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

Unified Diff: compiler/java/com/google/dart/compiler/CommandLineOptions.java

Issue 9317093: Remove DartDocumentationGenerator and related flags. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 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
« no previous file with comments | « no previous file | compiler/java/com/google/dart/compiler/CompilerConfiguration.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiler/java/com/google/dart/compiler/CommandLineOptions.java
diff --git a/compiler/java/com/google/dart/compiler/CommandLineOptions.java b/compiler/java/com/google/dart/compiler/CommandLineOptions.java
index fab93082999dbdbd19413e0201988e65dfaab7a4..ea65204e26d2256433f1b3e917195a9e19e39f9e 100644
--- a/compiler/java/com/google/dart/compiler/CommandLineOptions.java
+++ b/compiler/java/com/google/dart/compiler/CommandLineOptions.java
@@ -1,4 +1,3 @@
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
zundel 2012/02/03 21:21:30 put me back, change to 2012
// 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.
@@ -54,18 +53,6 @@ public class CommandLineOptions {
usage = "Turn off type optimizations\n (for debugging)")
private boolean disableTypeOptimizations = false;
- @Option(name = "--documentation-lib", aliases = { "-documentation-lib" },
- usage = "Only generate docs for the\n given library")
- private String documentationLibrary = null;
-
- @Option(name = "--documentation-out", aliases = { "-documentation-out" },
- usage = "Directory to write documentation")
- private String documentationOutputDirectory = "out";
-
- @Option(name = "--generate-documentation", aliases = { "-generate-documentation" },
- usage = "Generate docs from source")
- private boolean generateDocumentation = false;
-
@Option(name = "--generate-isolate-stubs", aliases = { "-generate-isolate-stubs" },
usage = "Classes to generate stubs\n (comma-separated list)")
private String generateIsolateStubs = null;
@@ -173,28 +160,6 @@ public class CommandLineOptions {
}
/**
- * Returns whether the option -generate-documentation is provided.
- */
- public boolean generateDocumentation() {
- return generateDocumentation;
- }
-
- /**
- * Returns the library to document. If null is returned generate
- * documentation for all libraries.
- */
- public String getDocumentationLibrary() {
- return documentationLibrary;
- }
-
- /**
- * Returns the documentation output directory.
- */
- public String getDocumentationOutputDirectory() {
- return documentationOutputDirectory;
- }
-
- /**
* Returns the names of classes to generate stubs for.
*/
public Set<String> getIsolateStubClasses() {
« no previous file with comments | « no previous file | compiler/java/com/google/dart/compiler/CompilerConfiguration.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698