Skip to content

Commit

Permalink
docs: added missing comment
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeypospelov committed Feb 7, 2024
1 parent 063a0b4 commit dc763e9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions jacodb-api/src/main/kotlin/org/jacodb/api/cfg/JcRawInst.kt
Original file line number Diff line number Diff line change
Expand Up @@ -845,6 +845,9 @@ data class JcRawArgument(val index: Int, override val name: String, override val
}
}

/**
* @param name isn't considered in `equals` and `hashcode`
*/
data class JcRawLocalVar(val index: Int, override val name: String, override val typeName: TypeName) : JcRawLocal {
override fun toString(): String = name

Expand Down

0 comments on commit dc763e9

Please sign in to comment.