rascal
rascal copied to clipboard
The implementation of the Rascal meta-programming language (including interpreter, type checker, parser generator, compiler and JVM based run-time system)
**Describe the bug** fix this back to rascal-shell to make the text align with the example, which speaks about the continuation prompt.
**Describe the bug** This document: * still separates functions with and without patterns, while in fact there are only functions with patterns. * does not clearly document keyword parameters with...
**Is your feature request related to a problem? Please describe.** It is a user need for debugging configuration and setup to know which java installation, rascal version and compiler/interpreter path...
# Preliminaries * Every time this document says "release X" ; we mean to execute the instructions of this Wiki page: https://github.com/usethesource/rascal/wiki/How-to-make-a-release-of-a-Rascal-implemenation-project * The current release instructions are focused on...
It is not easy to "discover" how to start a debugging session in VS Code. It would be nice to describe it on this page https://www.rascal-mpl.org/docs/GettingStarted/RunningRascal/VScode/ This [Stack Overflow answer/comment](https://stackoverflow.com/questions/76457550/debugger-for-rascalmpl#comment135962772_76459066)...
This PR adds support for base-32 encoding, similar to the base-64 encoding that was already present. It also adds support for a "charset" keyword parameter to the existing base-64 string...
I noticed we still had a commons-lang dependency. I thought we got rid of that 10y back when most of their string functions weren't safe for unicode. There was on...
**Describe the bug** When constructing a type using `type` constructor with a type definition that contains keyword parameters that start with the symbol `\`, I get the exception: `io.usethesource.vallang.exceptions.IllegalIdentifierException: \val...
Splices of the form +x or +int x are not implemented in either the interpreter or the compiler. Issue #1930 already hints at this. This is a reminder to implement...
**Describe the bug** Here we see that the function `imports` returns a `rel[str \module, str imported]` but the hover help over the call to `imports` shows `rel[str, str]` The labels...