Support extraction of EL expressions:
code (before):
--------------------------
${user.profile.name}
--------------------------
User selects "user.profile", chooses "Extract variable", gives name "profile".
code (after)
--------------------------
<c:set var="profile" value="${user.profile}"/>
${profile.name}
--------------------------
-Check for other occurances, and suggest to replace those