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

Side by Side Diff: pkg/analysis_server/doc/api.html

Issue 574573002: Add SourceFileEdit.time field. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweak Created 6 years, 3 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 | Annotate | Revision Log
OLDNEW
1 <html><head> 1 <html><head>
2 <meta charset="UTF-8"> 2 <meta charset="UTF-8">
3 <title>Analysis Server API Specification</title> 3 <title>Analysis Server API Specification</title>
4 <style>body { 4 <style>body {
5 font-family: sans-serif, serif; 5 font-family: sans-serif, serif;
6 padding-left: 5%; 6 padding-left: 5%;
7 padding-right: 5%; 7 padding-right: 5%;
8 } 8 }
9 h1 { 9 h1 {
10 text-align: center; 10 text-align: center;
(...skipping 2822 matching lines...) Expand 10 before | Expand all | Expand 10 after
2833 </dd></dl></dd><dt class="typeDefinition"><a name="type_SourceFileEdit ">SourceFileEdit: object</a></dt><dd> 2833 </dd></dl></dd><dt class="typeDefinition"><a name="type_SourceFileEdit ">SourceFileEdit: object</a></dt><dd>
2834 <p> 2834 <p>
2835 A description of a set of changes to a single file. 2835 A description of a set of changes to a single file.
2836 </p> 2836 </p>
2837 2837
2838 <dl><dt class="field"><b><i>file ( <a href="#type_FilePath">FilePath</a> ) </i></b></dt><dd> 2838 <dl><dt class="field"><b><i>file ( <a href="#type_FilePath">FilePath</a> ) </i></b></dt><dd>
2839 2839
2840 <p> 2840 <p>
2841 The file containing the code to be modified. 2841 The file containing the code to be modified.
2842 </p> 2842 </p>
2843 </dd><dt class="field"><b><i>fileStamp ( long )</i></b></dt><dd>
2844
2845 <p>
2846 The modification stamp of the file at the moment when the change
2847 was created, in milliseconds since the "Unix epoch". Will be -1 if
2848 the file did not exist and should be created. The client may use
2849 this field to make sure that the file was not changed since then,
2850 so it is safe to apply the change.
2851 </p>
2843 </dd><dt class="field"><b><i>edits ( List&lt;<a href="#type_SourceEdit ">SourceEdit</a>&gt; )</i></b></dt><dd> 2852 </dd><dt class="field"><b><i>edits ( List&lt;<a href="#type_SourceEdit ">SourceEdit</a>&gt; )</i></b></dt><dd>
2844 2853
2845 <p> 2854 <p>
2846 A list of the edits used to effect the change. 2855 A list of the edits used to effect the change.
2847 </p> 2856 </p>
2848 </dd></dl></dd><dt class="typeDefinition"><a name="type_TypeHierarchyI tem">TypeHierarchyItem: object</a></dt><dd> 2857 </dd></dl></dd><dt class="typeDefinition"><a name="type_TypeHierarchyI tem">TypeHierarchyItem: object</a></dt><dd>
2849 <p> 2858 <p>
2850 A representation of a class in a type hierarchy. 2859 A representation of a class in a type hierarchy.
2851 </p> 2860 </p>
2852 2861
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
3196 <p> 3205 <p>
3197 This section contains a list of all of the errors that are 3206 This section contains a list of all of the errors that are
3198 produced by the server and the data that is returned with each. 3207 produced by the server and the data that is returned with each.
3199 </p> 3208 </p>
3200 <p> 3209 <p>
3201 TBD 3210 TBD
3202 </p> 3211 </p>
3203 3212
3204 3213
3205 </body></html> 3214 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698