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

Side by Side Diff: pkg/analysis_server/tool/spec/spec_input.html

Issue 574573002: Add SourceFileEdit.time field. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Use modification stamp of sources 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> 1 <html>
2 <head> 2 <head>
3 <meta charset="UTF-8"/> 3 <meta charset="UTF-8"/>
4 <title>Analysis Server API Specification</title> 4 <title>Analysis Server API Specification</title>
5 </head> 5 </head>
6 <body> 6 <body>
7 <h1>Analysis Server API Specification</h1> 7 <h1>Analysis Server API Specification</h1>
8 <h1 style="color:#999999">WORKING DRAFT - Version <version>0.3</version></h1 > 8 <h1 style="color:#999999">WORKING DRAFT - Version <version>0.3</version></h1 >
9 <p> 9 <p>
10 This document contains a specification of the API provided by 10 This document contains a specification of the API provided by
(...skipping 2862 matching lines...) Expand 10 before | Expand all | Expand 10 after
2873 <p> 2873 <p>
2874 A description of a set of changes to a single file. 2874 A description of a set of changes to a single file.
2875 </p> 2875 </p>
2876 <object> 2876 <object>
2877 <field name="file"> 2877 <field name="file">
2878 <ref>FilePath</ref> 2878 <ref>FilePath</ref>
2879 <p> 2879 <p>
2880 The file containing the code to be modified. 2880 The file containing the code to be modified.
2881 </p> 2881 </p>
2882 </field> 2882 </field>
2883 <field name="fileStamp">
2884 <ref>long</ref>
2885 <p>
2886 The modification stamp of the file at the moment when the change
2887 was created, in milliseconds since the "Unix epoch". Maybe -1 if
Brian Wilkerson 2014/09/16 13:51:32 "Maybe" --> "Will be"
scheglov 2014/09/16 17:18:35 Done.
2888 the file did not exist and should be created. The client may use
2889 this field to make sure that the file was not changed since then,
2890 so it is safe to apply the change.
2891 </p>
2892 </field>
2883 <field name="edits"> 2893 <field name="edits">
2884 <list><ref>SourceEdit</ref></list> 2894 <list><ref>SourceEdit</ref></list>
2885 <p> 2895 <p>
2886 A list of the edits used to effect the change. 2896 A list of the edits used to effect the change.
2887 </p> 2897 </p>
2888 </field> 2898 </field>
2889 </object> 2899 </object>
2890 </type> 2900 </type>
2891 <type name="TypeHierarchyItem"> 2901 <type name="TypeHierarchyItem">
2892 <p> 2902 <p>
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after
3286 <h2>Errors</h2> 3296 <h2>Errors</h2>
3287 <p> 3297 <p>
3288 This section contains a list of all of the errors that are 3298 This section contains a list of all of the errors that are
3289 produced by the server and the data that is returned with each. 3299 produced by the server and the data that is returned with each.
3290 </p> 3300 </p>
3291 <p> 3301 <p>
3292 TBD 3302 TBD
3293 </p> 3303 </p>
3294 </body> 3304 </body>
3295 </html> 3305 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698