Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ object Properties {
*/
val ClosureBindingId = flatgraph.OptionalPropertyKey[String](kind = 6, name = "CLOSURE_BINDING_ID")

/** The original name of the (potentially mangled) captured variable */
/** Deprecated. Create an explict REF edge instead. Formerly the original name of the (potentially mangled) captured
* variable
*/
val ClosureOriginalName = flatgraph.OptionalPropertyKey[String](kind = 7, name = "CLOSURE_ORIGINAL_NAME")

/** This field holds the code snippet that the node represents. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class PropertyNames {
/** Identifier which uniquely describes a CLOSURE_BINDING. This property is used to match captured LOCAL nodes with the corresponding CLOSURE_BINDING nodes */
public static final String CLOSURE_BINDING_ID = "CLOSURE_BINDING_ID";

/** The original name of the (potentially mangled) captured variable */
/** Deprecated. Create an explict REF edge instead. Formerly the original name of the (potentially mangled) captured variable */
public static final String CLOSURE_ORIGINAL_NAME = "CLOSURE_ORIGINAL_NAME";

/** This field holds the code snippet that the node represents. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ object ClosureBinding {
*/
val ClosureBindingId = "CLOSURE_BINDING_ID"

/** The original name of the (potentially mangled) captured variable */
/** Deprecated. Create an explict REF edge instead. Formerly the original name of the (potentially mangled) captured
* variable
*/
val ClosureOriginalName = "CLOSURE_ORIGINAL_NAME"

/** For formal method input parameters, output parameters, and return parameters, this field holds the evaluation
Expand All @@ -52,7 +54,9 @@ object ClosureBinding {
*/
val ClosureBindingId = flatgraph.OptionalPropertyKey[String](kind = 6, name = "CLOSURE_BINDING_ID")

/** The original name of the (potentially mangled) captured variable */
/** Deprecated. Create an explict REF edge instead. Formerly the original name of the (potentially mangled) captured
* variable
*/
val ClosureOriginalName = flatgraph.OptionalPropertyKey[String](kind = 7, name = "CLOSURE_ORIGINAL_NAME")

/** For formal method input parameters, output parameters, and return parameters, this field holds the evaluation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ object Hidden extends SchemaBase {
.addProperty(
name = "CLOSURE_ORIGINAL_NAME",
valueType = ValueType.String,
comment = "The original name of the (potentially mangled) captured variable"
comment =
"Deprecated. Create an explict REF edge instead. Formerly the original name of the (potentially mangled) captured variable"
)
.protoId(ProtoIds.ClosureOriginalName)

Expand Down