Chromium Code Reviews| 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() { |