Got some code that uses modules from lang, everything works fine within the Rascal console in Eclipse, but when I try to import it (import lang::java::jdt::m3::Core;) into the rascal-shell.jar it gives an error about a missing search path.
rascal>import lang::java::jdt::m3::Core;
|prompt:///|(0,33,<1,0>,<1,33>): Could not import module lang::java::jdt::m3::Core: can not find in search path
Advice: |http://tutor.rascal-mpl.org/Errors/Static/ModuleImport/ModuleImport.html|
Tried building my own rascal-shell using the instructions @github but no luck, is there a way for me to add the m3 modules to the search path and then build the rascal-shell?
Thanks!