Jurgen J. Vinju
Jurgen J. Vinju
@reijne to use the zip, download it and add it as a new "update site" from `file...` and then install Rascal from that update site.
code for later use in `void dataDeclaration(Tags tags, Declaration current, list[Variant] variants, Collector c){` ``` if ("" == "Tree" || "" == "\\Tree", variants != []) { str project =...
One can be fixed, but the other is problematic. In particular: > 6270 [INFO] stale source files have been found: during the `artifact` stage is strange. How could the source...
I'd like this fixed because there is a new standard library module that depends on it waiting to be merged. Is it something I could try myself @PaulKlint ?
See https://github.com/usethesource/rascal/pull/1503
If we'd add the explicit operator for equality checking in a pattern match, wouldn't this become a lot easier? Maybe it's time we move forward on that anyway. Got bitten...
That static type of `type[value]` is unavoidable because there is no static connection between the `"X"` string constant and the `X` type in the current design. That would require some...
This is the reason: ``` while (env.getParent() != null && !env.getParent().isRootScope()) { env = env.getParent(); } ``` At Profiler.java#110
This is during a sample. The current environment is retrieved by calling into the IEvaluator API and then we pop the scope stack until we hit a first-level function (of...
So to solve this bug we need another way to detect that the current environment is a function frame, as opposed to `getParent().isRootScope()`