| Index: pkg/analysis_server/tool/spec/spec_input.html
|
| diff --git a/pkg/analysis_server/tool/spec/spec_input.html b/pkg/analysis_server/tool/spec/spec_input.html
|
| index aa86cb65d86ab66cbc57565a40de3c10e8430bde..fc2caf861a2962db82142f8d178587ec26492371 100644
|
| --- a/pkg/analysis_server/tool/spec/spec_input.html
|
| +++ b/pkg/analysis_server/tool/spec/spec_input.html
|
| @@ -1850,6 +1850,12 @@
|
| errors and warnings.
|
| </p>
|
| </field>
|
| + <field name="fileReadMode" optional="true">
|
| + <ref>FileReadMode</ref>
|
| + <p>
|
| + The mode to read files from disk, by default this value is AS_IS.
|
| + </p>
|
| + </field>
|
| </object>
|
| </type>
|
| <type name="AnalysisService">
|
| @@ -2253,6 +2259,28 @@
|
| The absolute path of a file.
|
| </p>
|
| </type>
|
| + <type name="FileReadMode">
|
| + <p>
|
| + An enumeration of the ways files can be read from disk. Some clients
|
| + normalize end of line characters which would make the file offset and
|
| + range information incorrect.
|
| + </p>
|
| + <enum>
|
| + <value>
|
| + <code>AS_IS</code>
|
| + <p>
|
| + File contents are read as-is, no file changes occur.
|
| + </p>
|
| + </value>
|
| + <value>
|
| + <code>NORMALIZE_EOL</code>
|
| + <p>
|
| + File contents normalize the end of line characters to the single
|
| + character new line '\n'.
|
| + </p>
|
| + </value>
|
| + </enum>
|
| + </type>
|
| <type name="FoldingKind">
|
| <p>
|
| An enumeration of the kinds of folding regions.
|
|
|