@@ -41,12 +41,6 @@ public class PropertyNames {
4141and trade off between false negatives and false positives). */
4242public static final String CANONICAL_NAME = "CANONICAL_NAME" ;
4343
44-
45- public static final String CLASS_NAME = "CLASS_NAME" ;
46-
47-
48- public static final String CLASS_SHORT_NAME = "CLASS_SHORT_NAME" ;
49-
5044/** Identifier which uniquely describes a CLOSURE_BINDING. This property is used to match captured LOCAL nodes with the corresponding CLOSURE_BINDING nodes */
5145public static final String CLOSURE_BINDING_ID = "CLOSURE_BINDING_ID" ;
5246
@@ -196,19 +190,13 @@ it is referenced but not defined in the code (applies both to insular
196190to have exactly one METHOD node for each METHOD_FULL_NAME */
197191public static final String METHOD_FULL_NAME = "METHOD_FULL_NAME" ;
198192
199-
200- public static final String METHOD_SHORT_NAME = "METHOD_SHORT_NAME" ;
201-
202193/** The modifier type is a free-form string. The following are known modifier types:
203194`STATIC`, `PUBLIC`, `PROTECTED`, `PRIVATE`, `ABSTRACT`, `NATIVE`, `CONSTRUCTOR`, `VIRTUAL`. */
204195public static final String MODIFIER_TYPE = "MODIFIER_TYPE" ;
205196
206197/** Name of represented object, e.g., method name (e.g. "run") */
207198public static final String NAME = "NAME" ;
208199
209-
210- public static final String NODE_LABEL = "NODE_LABEL" ;
211-
212200/** Start offset into the CONTENT property of the corresponding FILE node.
213201The offset is such that parts of the content can easily
214202be accessed via `content.substring(offset, offsetEnd)`.
@@ -235,9 +223,6 @@ This means that the offset must be measured in utf16 encoding (i.e. neither in
235223between each other. */
236224public static final String OVERLAYS = "OVERLAYS" ;
237225
238-
239- public static final String PACKAGE_NAME = "PACKAGE_NAME" ;
240-
241226/** AST node type name emitted by parser. */
242227public static final String PARSER_TYPE_NAME = "PARSER_TYPE_NAME" ;
243228
@@ -259,9 +244,6 @@ This means that the offset must be measured in utf16 encoding (i.e. neither in
259244implementor to fit the source language. */
260245public static final String SIGNATURE = "SIGNATURE" ;
261246
262-
263- public static final String SYMBOL = "SYMBOL" ;
264-
265247/** The static type decl of a TYPE. This property is matched against the FULL_NAME
266248of TYPE_DECL nodes. It is required to have exactly one TYPE_DECL for each
267249different TYPE_DECL_FULL_NAME */
@@ -290,8 +272,6 @@ This means that the offset must be measured in utf16 encoding (i.e. neither in
290272add (AST_PARENT_FULL_NAME );
291273add (AST_PARENT_TYPE );
292274add (CANONICAL_NAME );
293- add (CLASS_NAME );
294- add (CLASS_SHORT_NAME );
295275add (CLOSURE_BINDING_ID );
296276add (CLOSURE_ORIGINAL_NAME );
297277add (CODE );
@@ -323,21 +303,17 @@ This means that the offset must be measured in utf16 encoding (i.e. neither in
323303add (LINE_NUMBER );
324304add (LINE_NUMBER_END );
325305add (METHOD_FULL_NAME );
326- add (METHOD_SHORT_NAME );
327306add (MODIFIER_TYPE );
328307add (NAME );
329- add (NODE_LABEL );
330308add (OFFSET );
331309add (OFFSET_END );
332310add (ORDER );
333311add (OVERLAYS );
334- add (PACKAGE_NAME );
335312add (PARSER_TYPE_NAME );
336313add (POSSIBLE_TYPES );
337314add (ROOT );
338315add (SECONDARY_ID );
339316add (SIGNATURE );
340- add (SYMBOL );
341317add (TYPE_DECL_FULL_NAME );
342318add (TYPE_FULL_NAME );
343319add (VALUE );
0 commit comments