Skip to content

Commit 1ad9a7a

Browse files
authored
Add INDEX property to METHOD_PARAMETER_OUT. (#1666)
This was wa missed while adding INDEX to METHOD_PARAMETER_IN. We want that property to be reflected on both.
1 parent a68ac03 commit 1ad9a7a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • schema/src/main/scala/io/shiftleft/codepropertygraph/schema

schema/src/main/scala/io/shiftleft/codepropertygraph/schema/Method.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ object Method extends SchemaBase {
106106
|""".stripMargin
107107
)
108108
.protoId(33)
109-
.addProperties(typeFullName, isVariadic)
109+
.addProperties(typeFullName, isVariadic, index)
110110
.extendz(declaration)
111111

112112
val methodReturn: NodeType = builder

0 commit comments

Comments
 (0)