Skip to content

Commit

Permalink
Moved to the latest rascal and rascal-plugin release
Browse files Browse the repository at this point in the history
  • Loading branch information
DavyLandman committed Jun 14, 2024
1 parent 9aa3d6a commit 35e3899
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<plugin>
<groupId>org.rascalmpl</groupId>
<artifactId>rascal-maven-plugin</artifactId>
<version>0.23.0</version>
<version>0.27.3</version>
<configuration>
<errorsAsWarnings>true</errorsAsWarnings>
<bin>${project.build.outputDirectory}</bin>
Expand Down Expand Up @@ -160,7 +160,7 @@
<dependency>
<groupId>org.rascalmpl</groupId>
<artifactId>rascal</artifactId>
<version>0.34.0</version>
<version>0.40.2</version>
</dependency>
<dependency>
<groupId>org.ow2.asm</groupId>
Expand Down
2 changes: 1 addition & 1 deletion src/lang/flybytes/Syntax.rsc
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ Method staticMethod(Type ret, str name, list[Formal] args, list[Stat] block)
@synopsis{Short-hand for generating a constructor.}
@pitfalls{Don't forgot to generate a super call.}
Method constructor(Modifier access, list[Formal] formals, list[Stat] block)
= method(constructorDesc([ var.\type | var <- formals]), formals, block, modifiers={access});
= method(constructorDesc([ var.\type | Formal var <- formals]), formals, block, modifiers={access});
@synopsis{"new" short-hand with parameters}
Exp new(Type class, list[Type] argTypes, list[Exp] args)
Expand Down
2 changes: 1 addition & 1 deletion src/lang/flybytes/internal/ASTgen.rsc
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ str type2FactoryCall(Symbol t){
case \str() : return "IString";
case \datetime() : return "IDateTime";
case \tuple(_) : return "ITuple";
case \func(_, _): return "ICallableValue";
case \func(_, _, _): return "ICallableValue";
case \alias(_,_,a) : return typeToJavaType(a);
default : return "IValue";
}
Expand Down

0 comments on commit 35e3899

Please sign in to comment.