| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <meta charset="UTF-8"/> | 4 <meta charset="UTF-8"/> |
| 5 <title>Analysis Server API Specification</title> | 5 <title>Analysis Server API Specification</title> |
| 6 </head> | 6 </head> |
| 7 <body> | 7 <body> |
| 8 <h1>Analysis Server API Specification</h1> | 8 <h1>Analysis Server API Specification</h1> |
| 9 <h1 style="color:#999999">Version <version>1.18.1</version></h1> | 9 <h1 style="color:#999999">Version <version>1.18.1</version></h1> |
| 10 <p> | 10 <p> |
| (...skipping 2177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2188 treated as a "hint". Despite the possibility of false negatives, | 2188 treated as a "hint". Despite the possibility of false negatives, |
| 2189 no false positives should be returned. If a client sees this | 2189 no false positives should be returned. If a client sees this |
| 2190 flag set they can proceed with the confidence that there are in | 2190 flag set they can proceed with the confidence that there are in |
| 2191 fact associated fixes. | 2191 fact associated fixes. |
| 2192 </p> | 2192 </p> |
| 2193 </field> | 2193 </field> |
| 2194 </object> | 2194 </object> |
| 2195 </type> | 2195 </type> |
| 2196 <type name="AnalysisErrorFixes"> | 2196 <type name="AnalysisErrorFixes"> |
| 2197 <p> | 2197 <p> |
| 2198 A list of fixes associated with a specific error | 2198 A list of fixes associated with a specific error. |
| 2199 </p> | 2199 </p> |
| 2200 <object> | 2200 <object> |
| 2201 <field name="error"> | 2201 <field name="error"> |
| 2202 <ref>AnalysisError</ref> | 2202 <ref>AnalysisError</ref> |
| 2203 <p> | 2203 <p> |
| 2204 The error with which the fixes are associated. | 2204 The error with which the fixes are associated. |
| 2205 </p> | 2205 </p> |
| 2206 </field> | 2206 </field> |
| 2207 <field name="fixes"> | 2207 <field name="fixes"> |
| 2208 <list><ref>SourceChange</ref></list> | 2208 <list><ref>SourceChange</ref></list> |
| (...skipping 2120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4329 The offsets of the expressions that would be replaced by | 4329 The offsets of the expressions that would be replaced by |
| 4330 a reference to the variable. | 4330 a reference to the variable. |
| 4331 </p> | 4331 </p> |
| 4332 </field> | 4332 </field> |
| 4333 <field name="lengths"> | 4333 <field name="lengths"> |
| 4334 <list><ref>int</ref></list> | 4334 <list><ref>int</ref></list> |
| 4335 <p> | 4335 <p> |
| 4336 The lengths of the expressions that would be replaced by | 4336 The lengths of the expressions that would be replaced by |
| 4337 a reference to the variable. The lengths correspond to | 4337 a reference to the variable. The lengths correspond to |
| 4338 the offsets. In other words, for a given expression, if | 4338 the offsets. In other words, for a given expression, if |
| 4339 the offset of that expression is offsets[i], then the | 4339 the offset of that expression is <tt>offsets[i]</tt>, then |
| 4340 length of that expression is lengths[i]. | 4340 the length of that expression is <tt>lengths[i]</tt>. |
| 4341 </p> | 4341 </p> |
| 4342 </field> | 4342 </field> |
| 4343 </feedback> | 4343 </feedback> |
| 4344 <options> | 4344 <options> |
| 4345 <field name="name"> | 4345 <field name="name"> |
| 4346 <ref>String</ref> | 4346 <ref>String</ref> |
| 4347 <p> | 4347 <p> |
| 4348 The name that the local variable should be given. | 4348 The name that the local variable should be given. |
| 4349 </p> | 4349 </p> |
| 4350 </field> | 4350 </field> |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4419 be replaced by an invocation of the method. | 4419 be replaced by an invocation of the method. |
| 4420 </p> | 4420 </p> |
| 4421 </field> | 4421 </field> |
| 4422 <field name="lengths"> | 4422 <field name="lengths"> |
| 4423 <list><ref>int</ref></list> | 4423 <list><ref>int</ref></list> |
| 4424 <p> | 4424 <p> |
| 4425 The lengths of the expressions or statements that would | 4425 The lengths of the expressions or statements that would |
| 4426 be replaced by an invocation of the method. The lengths | 4426 be replaced by an invocation of the method. The lengths |
| 4427 correspond to the offsets. In other words, for a given | 4427 correspond to the offsets. In other words, for a given |
| 4428 expression (or block of statements), if the offset of | 4428 expression (or block of statements), if the offset of |
| 4429 that expression is offsets[i], then the length of that | 4429 that expression is <tt>offsets[i]</tt>, then the length |
| 4430 expression is lengths[i]. | 4430 of that expression is <tt>lengths[i]</tt>. |
| 4431 </p> | 4431 </p> |
| 4432 </field> | 4432 </field> |
| 4433 </feedback> | 4433 </feedback> |
| 4434 <options> | 4434 <options> |
| 4435 <field name="returnType"> | 4435 <field name="returnType"> |
| 4436 <ref>String</ref> | 4436 <ref>String</ref> |
| 4437 <p> | 4437 <p> |
| 4438 The return type that should be defined for the method. | 4438 The return type that should be defined for the method. |
| 4439 </p> | 4439 </p> |
| 4440 </field> | 4440 </field> |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4636 This section contains a list of all of the errors that are | 4636 This section contains a list of all of the errors that are |
| 4637 produced by the server and the data that is returned with each. | 4637 produced by the server and the data that is returned with each. |
| 4638 </p> | 4638 </p> |
| 4639 <p> | 4639 <p> |
| 4640 TODO: TBD | 4640 TODO: TBD |
| 4641 </p> | 4641 </p> |
| 4642 <h2 class="domain"><a name="index">Index</a></h2> | 4642 <h2 class="domain"><a name="index">Index</a></h2> |
| 4643 <index></index> | 4643 <index></index> |
| 4644 </body> | 4644 </body> |
| 4645 </html> | 4645 </html> |
| OLD | NEW |