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

Side by Side Diff: pkg/analysis_server/tool/spec/generated/java/types/AnalysisOptions.java

Issue 1409333002: DAS specification changes - spelling and ElementKind.FILE addition. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2014, the Dart project authors. 2 * Copyright (c) 2014, 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 private final Boolean enableEnums; 66 private final Boolean enableEnums;
67 67
68 /** 68 /**
69 * Deprecated: this feature is always enabled. 69 * Deprecated: this feature is always enabled.
70 * 70 *
71 * True if the client wants to enable support for the proposed "null aware ope rators" feature. 71 * True if the client wants to enable support for the proposed "null aware ope rators" feature.
72 */ 72 */
73 private final Boolean enableNullAwareOperators; 73 private final Boolean enableNullAwareOperators;
74 74
75 /** 75 /**
76 * True if the client wants to enable spport for the proposed "less restricted mixins" proposal 76 * True if the client wants to enable support for the proposed "less restricte d mixins" proposal
77 * (DEP 34). 77 * (DEP 34).
78 */ 78 */
79 private final Boolean enableSuperMixins; 79 private final Boolean enableSuperMixins;
80 80
81 /** 81 /**
82 * True if hints that are specific to dart2js should be generated. This option is ignored if 82 * True if hints that are specific to dart2js should be generated. This option is ignored if
83 * generateHints is false. 83 * generateHints is false.
84 */ 84 */
85 private final Boolean generateDart2jsHints; 85 private final Boolean generateDart2jsHints;
86 86
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 /** 179 /**
180 * Deprecated: this feature is always enabled. 180 * Deprecated: this feature is always enabled.
181 * 181 *
182 * True if the client wants to enable support for the proposed "null aware ope rators" feature. 182 * True if the client wants to enable support for the proposed "null aware ope rators" feature.
183 */ 183 */
184 public Boolean getEnableNullAwareOperators() { 184 public Boolean getEnableNullAwareOperators() {
185 return enableNullAwareOperators; 185 return enableNullAwareOperators;
186 } 186 }
187 187
188 /** 188 /**
189 * True if the client wants to enable spport for the proposed "less restricted mixins" proposal 189 * True if the client wants to enable support for the proposed "less restricte d mixins" proposal
190 * (DEP 34). 190 * (DEP 34).
191 */ 191 */
192 public Boolean getEnableSuperMixins() { 192 public Boolean getEnableSuperMixins() {
193 return enableSuperMixins; 193 return enableSuperMixins;
194 } 194 }
195 195
196 /** 196 /**
197 * True if hints that are specific to dart2js should be generated. This option is ignored if 197 * True if hints that are specific to dart2js should be generated. This option is ignored if
198 * generateHints is false. 198 * generateHints is false.
199 */ 199 */
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 builder.append(generateDart2jsHints + ", "); 276 builder.append(generateDart2jsHints + ", ");
277 builder.append("generateHints="); 277 builder.append("generateHints=");
278 builder.append(generateHints + ", "); 278 builder.append(generateHints + ", ");
279 builder.append("generateLints="); 279 builder.append("generateLints=");
280 builder.append(generateLints); 280 builder.append(generateLints);
281 builder.append("]"); 281 builder.append("]");
282 return builder.toString(); 282 return builder.toString();
283 } 283 }
284 284
285 } 285 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698