"NoMethod" late bound call bug? (B2.10 - X# runtime , Vulcan dialect)
Posted: Thu Nov 28, 2019 9:43 am
Hi All,
since version 2.0.8.1 there is a different behaviour with the "NoMethod" method in late bound calls compared to version 2.0.7 respectively Vulcan. The method name is not provided any more as first parameter.
According to the Whatsnew-Documentation you did some changes to the "NoMethod" method in 2.0.8.0?
For example:
Could you please check this?
Thomas
since version 2.0.8.1 there is a different behaviour with the "NoMethod" method in late bound calls compared to version 2.0.7 respectively Vulcan. The method name is not provided any more as first parameter.
According to the Whatsnew-Documentation you did some changes to the "NoMethod" method in 2.0.8.0?
For example:
Code: Select all
PUBLIC CLASS SomeXsClass
PUBLIC METHOD NoMethod()
LOCAL nParams := PCount() AS INT
...
LOCAL paramVal1 := _GETMPARAM(1) AS USUAL
RETURN paramVal1
FUNCTION Test()
LOCAL cResult AS STRING
LOCAL oSomeClass := SomeXsClass{} AS USUAL
cResult := oSomeClass:XXSomeMethod("Blablabla")
//cResult: "Blablabla", expected "XxSomeMethod"
Could you please check this?
Thomas