Rascal is an experimental domain specific language for metaprogramming, such as static code analysis, program transformation and implementation of domain specific languages. It includes primitives from relational calculus and term rewriting. Its syntax and semantics are based on procedural ...
2
votes
1answer
24 views
Does my variable have an annotation?
How can I check if my variable has some annotation?
I know this can be done for properties using the keyword has.
Is there a similar way to do this for annotations?
2
votes
1answer
23 views
Rascal error when specifying grammar
I have a simple file in rascal for specifying a toy grammar
module temp
import IO;
import ParseTree;
layout LAYOUT = [\t-\n\r\ ]*;
start syntax Simple
= A B ;
syntax A = "Hello"+ ("joe" ...
4
votes
1answer
39 views
Debugging Rascal code
So i've been using Rascal for a while now, but I was wondering if there is support debugging without using println and the terminal?
So like with c# in Visual Studio, stepping through the code, into ...
1
vote
1answer
25 views
In a visit expression, can the default be labeled like the cases?
Example:
visit(Sometree)
{
case a:someNodeA(_,_): HandleNodeA(a);
default: Handle(???);
}
So i want to handle all the other cases by using default, how can I do this?
1
vote
1answer
27 views
Why can't I use a map's value without having to use a temporary variable?
Ok so this is my scenario:
rascal>map[int, list[int]] g = ();
rascal>g += (1:[2]);
This will result in:
rascal>g[1];
list[int]: [2]
So far so good, but now I wanted to do this, but it ...
1
vote
1answer
34 views
Variable unknown when not initialized in the declaration
I ran into this today, and I was wondering if something is going wrong here.
module example
public rel[str file, AstNode namespace] relFileNamespace;
public void InitGlobals()
{
relFileNamespace ...
1
vote
1answer
27 views
How to get types and names of variables in a Java project?
I'm using Rascal to analyse a Java project and I want to retrieve for each method the types and names of the local variables.
The names are easily enough with the use of the function extractProject ...
-1
votes
2answers
93 views
Why are static type errors in this example code only reported at run-time by Rascal?
According to the Rascal documentation, the language is statically typed. However the type errors are only reported on runtime.
For example, when I create this module, I expect a type error because I ...