@@ -172,37 +172,36 @@ svnchurn(
172172/*- Files and folders -*/
173173
174174/**
175- * The location of an element that is not an expression or a statement .
175+ * The location of an element.
176176 * The location spans column `startcolumn` of line `startline` to
177177 * column `endcolumn` of line `endline` in file `file`.
178178 * For more information, see
179179 * [Locations](https://codeql.github.com/docs/writing-codeql-queries/providing-locations-in-codeql-queries/).
180180 */
181181locations_default(
182- /** The location of an element that is not an expression or a statement. */
183- unique int id: @location_default,
184- int container: @container ref,
185- int startLine: int ref,
186- int startColumn: int ref,
187- int endLine: int ref,
188- int endColumn: int ref
182+ unique int id: @location_default,
183+ int file: @file ref,
184+ int beginLine: int ref,
185+ int beginColumn: int ref,
186+ int endLine: int ref,
187+ int endColumn: int ref
189188);
190189
191190files(
192- unique int id: @file,
193- string name: string ref
191+ unique int id: @file,
192+ string name: string ref
194193);
195194
196195folders(
197- unique int id: @folder,
198- string name: string ref
196+ unique int id: @folder,
197+ string name: string ref
199198);
200199
201- @container = @folder | @file
200+ @container = @file | @folder
202201
203202containerparent(
204- int parent: @container ref,
205- unique int child: @container ref
203+ int parent: @container ref,
204+ unique int child: @container ref
206205);
207206
208207/*- Lines of code -*/
0 commit comments