the component function with visibility problem persists
It has looked like the problem was solved at CF 2021. After the 2nd. update, the same problem come back!
I've created a simple component containing a private and a public function.
Then a simple page that calls the component itself...
Testing the cfc calling, it generates an error:
| Variable F_PRIVATE is undefined. |
| The error occurred in C:/Websites/test.lab/wwwroot/path/to/_cfcFile.cfc: line 8 |
6 : public struct function f_public(){
7 : local['s_test']={
8 : 'v_test':f_private()+9876
9 : };
10 : return local['s_test']; |
