Skip to content

Commit

Permalink
Using latest rascal and rascal-core typechecker
Browse files Browse the repository at this point in the history
  • Loading branch information
DavyLandman committed Aug 30, 2024
1 parent d6aceda commit 5f618d8
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<version>3.1.1</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
<arguments>-Drascal.compile.skip -DskipTests -Drascal.tutor.skip</arguments>
Expand Down
1 change: 0 additions & 1 deletion src/analysis/grammars/dramb/Diagnose.rsc
Original file line number Diff line number Diff line change
Expand Up @@ -474,4 +474,3 @@ void rules(list[Production] rs) {
}
void rules(set[Production] r) = rules(sort(r));
4 changes: 2 additions & 2 deletions src/analysis/grammars/dramb/Regression.rsc
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ list[ParsingRegression] runRegressionTests(type[&T <: Tree] newGrammar, Model m)
println(" ok!");
}
}
catch ParseError(_e) : {
catch ParseError(l) : {
println(" parse error!");
append error(ex, s, _e);
append error(ex, s, l);
}
catch value v: {
println(" unexpected crash!");
Expand Down

0 comments on commit 5f618d8

Please sign in to comment.