@@ -166,67 +166,17 @@ compilation_assembly(
166
166
int assembly: @assembly ref
167
167
)
168
168
169
- /*
170
- * External artifacts
171
- */
172
-
173
- externalDefects(
174
- unique int id: @externalDefect,
175
- string queryPath: string ref,
176
- int location: @location ref,
177
- string message: string ref,
178
- float severity: float ref);
179
-
180
- externalMetrics(
181
- unique int id: @externalMetric,
182
- string queryPath: string ref,
183
- int location: @location ref,
184
- float value: float ref);
185
-
186
- externalData(
187
- int id: @externalDataElement,
188
- string path: string ref,
189
- int column: int ref,
190
- string value: string ref);
191
-
192
- snapshotDate(
193
- unique date snapshotDate: date ref);
194
-
195
169
sourceLocationPrefix(
196
170
string prefix: string ref);
197
171
198
- /*
199
- * Duplicate code
200
- */
201
-
202
- duplicateCode(
203
- unique int id: @duplication,
204
- string relativePath: string ref,
205
- int equivClass: int ref);
206
-
207
- similarCode(
208
- unique int id: @similarity,
209
- string relativePath: string ref,
210
- int equivClass: int ref);
211
-
212
- @duplication_or_similarity = @duplication | @similarity
213
-
214
- tokens(
215
- int id: @duplication_or_similarity ref,
216
- int offset: int ref,
217
- int beginLine: int ref,
218
- int beginColumn: int ref,
219
- int endLine: int ref,
220
- int endColumn: int ref);
221
-
222
172
/*
223
173
* C# dbscheme
224
174
*/
225
175
226
176
/** ELEMENTS **/
227
177
228
178
@element = @declaration | @stmt | @expr | @modifier | @attribute | @namespace_declaration
229
- | @using_directive | @type_parameter_constraints | @external_element
179
+ | @using_directive | @type_parameter_constraints
230
180
| @xmllocatable | @asp_element | @namespace | @preprocessor_directive;
231
181
232
182
@declaration = @callable | @generic | @assignable | @namespace;
@@ -239,8 +189,6 @@ tokens(
239
189
240
190
@assignable_with_accessors = @property | @indexer;
241
191
242
- @external_element = @externalMetric | @externalDefect | @externalDataElement;
243
-
244
192
@attributable = @assembly | @field | @parameter | @operator | @method | @constructor
245
193
| @destructor | @callable_accessor | @value_or_ref_type | @declaration_with_accessors
246
194
| @local_function;
0 commit comments