PR# 19621 Call on SCOOP variable not clickable in editor

Problem Report Summary
Submitter: gobobe
Category: EiffelStudio
Priority: Medium
Date: 2020/03/11
Class: Bug
Severity: Non-critical
Number: 19621
Release: 19.12.10.3842
Confidential: No
Status: Open
Responsible:
Environment: win
Synopsis: Call on SCOOP variable not clickable in editor

Description
In the following code, `to_lower` is not clickable. And auto-completion when the target is `s2` does not work either.

~~~~~~~~~~~~~~~~~~~~~~
	f
		do
			create s1.make_empty
			separate s1 as s2 do
				s2.to_lower
			end
		end

	s1: separate STRING
~~~~~~~~~~~~~~~~~~~~~~
To Reproduce

										
Problem Report Interactions
From:gobobe    Date:2020/03/11    Status: Open    Download   
Note that there is no such problem when `s2` is a formal argument of the routine:

~~~~~~~~~~~~~~~~
	f (s2: separate STRING)
		do
			s2.to_lower
		end
~~~~~~~~~~~~~~~~

--
Eric Bezault