| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013, the Dart project authors. | 2 * Copyright (c) 2013, the Dart project authors. |
| 3 * | 3 * |
| 4 * Licensed under the Eclipse Public License v1.0 (the "License"); you may not u
se this file except | 4 * Licensed under the Eclipse Public License v1.0 (the "License"); you may not u
se this file except |
| 5 * in compliance with the License. You may obtain a copy of the License at | 5 * in compliance with the License. You may obtain a copy of the License at |
| 6 * | 6 * |
| 7 * http://www.eclipse.org/legal/epl-v10.html | 7 * http://www.eclipse.org/legal/epl-v10.html |
| 8 * | 8 * |
| 9 * Unless required by applicable law or agreed to in writing, software distribut
ed under the License | 9 * Unless required by applicable law or agreed to in writing, software distribut
ed under the License |
| 10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY K
IND, either express | 10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY K
IND, either express |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 */ | 41 */ |
| 42 private boolean dart2jsHint = true; | 42 private boolean dart2jsHint = true; |
| 43 | 43 |
| 44 /** | 44 /** |
| 45 * A flag indicating whether analysis is to generate hint results (e.g. type i
nference based | 45 * A flag indicating whether analysis is to generate hint results (e.g. type i
nference based |
| 46 * information and pub best practices). | 46 * information and pub best practices). |
| 47 */ | 47 */ |
| 48 private boolean hint = true; | 48 private boolean hint = true; |
| 49 | 49 |
| 50 /** | 50 /** |
| 51 * <<<<<<< HEAD A flag indicating whether incremental analysis should be used. | 51 * A flag indicating whether incremental analysis should be used. |
| 52 */ | 52 */ |
| 53 private boolean incremental = false; | 53 private boolean incremental = false; |
| 54 | 54 |
| 55 /** | 55 /** |
| 56 * A flag indicating whether analysis is to parse references in documentation
comments. ======= A | 56 * flag indicating whether analysis is to parse comments. |
| 57 * flag indicating whether analysis is to parse comments. >>>>>>> Java changes
. | |
| 58 */ | 57 */ |
| 59 private boolean preserveComments = true; | 58 private boolean preserveComments = true; |
| 60 | 59 |
| 61 /** | 60 /** |
| 62 * Initialize a newly created set of analysis options to have their default va
lues. | 61 * Initialize a newly created set of analysis options to have their default va
lues. |
| 63 */ | 62 */ |
| 64 public AnalysisOptionsImpl() { | 63 public AnalysisOptionsImpl() { |
| 65 } | 64 } |
| 66 | 65 |
| 67 /** | 66 /** |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 | 156 |
| 158 /** | 157 /** |
| 159 * Set whether analysis is to parse comments. | 158 * Set whether analysis is to parse comments. |
| 160 * | 159 * |
| 161 * @param preserveComments {@code true} if analysis is to parse comments | 160 * @param preserveComments {@code true} if analysis is to parse comments |
| 162 */ | 161 */ |
| 163 public void setPreserveComments(boolean preserveComments) { | 162 public void setPreserveComments(boolean preserveComments) { |
| 164 this.preserveComments = preserveComments; | 163 this.preserveComments = preserveComments; |
| 165 } | 164 } |
| 166 } | 165 } |
| OLD | NEW |