usethesource / rascal

The implementation of the Rascal meta-programming language (including interpreter, type checker, parser generator, compiler and JVM based run-time system)
http://www.rascal-mpl.org
Other
404 stars 78 forks source link

Module name completion in compiled console is broken #1084

Open PaulKlint opened 7 years ago

PaulKlint commented 7 years ago

Typing something like

rascal>import la

followed by TAB should show a list of completions, here lang::. However, in the compiled console this no longer works. Preliminary analysis: this has to do with exists on project schemes.

PaulKlint commented 7 years ago

Weird, in the latest version, the above works but

rascal>test la

still does not expand.

PaulKlint commented 7 years ago

Another observation: the above holds for the Compiled Rascal Shell running inside Eclipse. Running it from the command line all works fine.

My suspicion remains: exists on project schemes.