javascript and boo scope quick question

is it possible to make a class, defined in one of the two languages, visible to each other? I mean: I defined a class in a boo script and I want to instantiate it in a javascript one but looks like I’m unable make that happen 'cos I got ‘unknown identifier’ error.

to each other is impossible but making one visible to the other is possible.
see the manual page on compilation order to find out how to do it

thank you dreamora to remind me that - I knew that putting the main class script in the plugins folder I would have gained the right scope visibility and formerly I tried that but I missed a typo in the class name and so I thought was a scope problem between the two ‘kids’. As a matter of fact now they see each other without fighting as before.