This repository was archived by the owner on Mar 5, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/org/rascalmpl/core/library/lang/rascalcore/check Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ public PathConfig getRascalProjectTestingPathConfig() {
9191// The keep parameter determines whether the generated sources and binaries are kept in a temporary directory or not.
9292// If keep is true, the generated sources and binaries are stored in a temporary directory, otherwise they are stored in the source directory.
9393
94- ublic PathConfig makePathConfig (list [loc ] sources , list [loc ] libraries , bool keep = false ) {
94+ public PathConfig makePathConfig (list [loc ] sources , list [loc ] libraries , bool keep = false ) {
9595 COMPILED = keep ? COMPILED_RASCAL : TMP_COMPILED_RASCAL ;
9696 return pathConfig (
9797 srcs = sources ,
@@ -327,7 +327,8 @@ public RascalCompilerConfig getVSCodeCompilerConfig(){
327327// ---- Outdated TypePal Usage -----------------------------------------------------------------
328328
329329public PathConfig getOutdatedTPLPathConfig (bool keep = false ) {
330- return makePathConfig ([RASCAL_CORE + "src/org/rascalmpl/core/library" ],
330+ return makePathConfig (RASCAL_CORE ,
331+ [RASCAL_CORE + "src/org/rascalmpl/core/library" ],
331332 [ RASCAL , OUTDATED_TYPEPAL ],
332333 keep =keep );
333334}
You can’t perform that action at this time.
0 commit comments