Closed VolkerL closed 8 years ago
Also included a fix that allows wider selections like:
test array instantiation yields an integer array [[
class Main {
public static void main(String[] args) {
System.out.println([[ new int[3] ]].length);
}
}
]]
The wider selection (i.e., spaces at the edges) is required, because the ]
of the array gets in the way of the closing marker ]]
.
That solves one of the cases that every compiler construction student runs into. Very nice 👍
This PR adds:
parse to Some(Node(_))
transform "my transformation"
is now a valid test expectation.org.metaborg.spt.test
contains tests to check the behaviour of SPT.The
LanguageDiscoveryService
failed to loadSPT-Interactive
so for now we just need to check these tests manually. I would have loved to test SPT in SPT though...