It seems that click to implementation/declaration (CTRL left/right mounse button) within classes is not working. I'm not sure if it's repoored yet or if it's in enhancement requests.
Easy example:
If I'm on line SELF.initialize(); goto declaration (MEMBER PROCEDURE initialize) is not working and also goto impelentation (MEMBER PROCEDURE initialize IS) is not working.
Easy example:
CREATE OR REPLACE TYPE myTestClass FORCE AS OBJECT
(
--
serviceName VARCHAR2(50),
--
CONSTRUCTOR FUNCTION myTestClass RETURN SELF AS RESULT,
MEMBER PROCEDURE initialize
--
) NOT FINAL;
CREATE OR REPLACE TYPE BODY myTestClass AS
--
CONSTRUCTOR FUNCTION myTestClass RETURN SELF AS RESULT IS
BEGIN
SELF.initialize();
RETURN;
END;
--
MEMBER PROCEDURE initialize IS
BEGIN
SELF.serviceName := 'myTestClass';
END;
--
END;
If I'm on line SELF.initialize(); goto declaration (MEMBER PROCEDURE initialize) is not working and also goto impelentation (MEMBER PROCEDURE initialize IS) is not working.