2

Soot transforms a java class file into a jimple file with local variables renamed. Now I want to know the scheme based on which Soot does that.

rolve
  • 10,083
  • 4
  • 55
  • 75

1 Answers1

1

Judging by code in the Soot repository here, it appears to use the original local names while using names prefixed with $ and a single-character reflecting the type for the generated ones.

obataku
  • 29,212
  • 3
  • 44
  • 57