BBx-Kitchen / bbj-language-server

BBj Language Server
MIT License
6 stars 6 forks source link

support direct use of BBj classes with source file path #50

Open StephanWald opened 1 year ago

StephanWald commented 1 year ago

This is valid:

::sys/prog/bao_utilities.bbj::BarUtils.setAdminObject(user$, pwd$)

and actually equivalent to

use ::sys/prog/bao_utilities.bbj::BarUtils
BarUtils.setAdminObject(user$,pwd$)