Paul Klint

Results 12 issues of Paul Klint

**Describe the bug** Bug in nested list matching with backtracking **To Reproduce** ``` value main() = [1, [*int _, int N, *int _], N] := [1, [10,20], 20]; ``` **Expected...

bug
wontfix
interpreter

**Describe the bug** Matches of the form /!_P_ := _S_ have unexpected behavior. **To Reproduce** In the REPL: ``` rascal>/!4 := 3; bool: true /!4 := 4; bool: false /!4...

bug
future-enhancement
interpreter

**Describe the bug** `Type.rsc` is out of sync with the actual implementation of Rascal's type system **Expected behavior** `Type.rsc` defines functions like `subtype`, `lub` and `glb` on Rascal types. These...

bug

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...

enhancement
typechecker
compiler

**Setting the stage** Module `vis::Graphs` contains a data declaration that goes like this (heavily abbreviated): ``` data CytoLayout(CytoLayoutName name = dagre(), bool animate=false) = cytolayout() | breadthfirstLayout(CytoLayoutName name = CytoLayoutName::breadthfirst(),...

question
typechecker
compiler
interpreter

After merging rascal and rascal-core we have already eliminated most duplicate files. This issue documents the remaining, potential, duplicates, handle with great care: - [x] `JavaCompilerException.java`: **[likely merge]** - `org.rascalmpl.interpreter.utils.JavaCompilerException.java`...

enhancement
compiler
interpreter

Some tests in `ComprehensionsTests.all` failed and I cannot understand how they ever succeeded. The offending tests were: ``` assertTrue(runTest("all(_

language design

**Describe the bug** A random test for `replaceLast` failed: `lang::rascal::tests::basic::Strings1::tstReplaceLast` **To Reproduce** These are the offending arguments str =>"978" str =>"9797" str =>"\a0396" **Desktop (please complete the following information):** -...

bug

**Describe the bug** `lang::rascal::tests::basic::Sets::dtstDifference` fails for input `{,,}` during random testing **To Reproduce** Here is a simple module to reproduce this error: ``` module lang::rascalcore::compile::Examples::Tst6 import IO; import Set; import...

bug