There are the following class:
STATIC CLASS Class1
STATIC METHOD DoSomething() AS VOID STRICT
RETURN
STATIC CLASS SubClass1
STATIC METHOD DoSomething() AS VOID STRICT
RETURN
END CLASS
END CLASS
If type a dot symbol in the code after the class name, then its members are not displayed:
FUNCTION Start() AS VOID STRICT
Class1. // nothing happens
RETURN
If hold the mouse cursor over class name, a hint will be displayed that it is "NAMESPACE Class1" instead of a hint that this is a class.
