This repository was archived by the owner on Mar 5, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +27
-2
lines changed
src/org/rascalmpl/core/library/lang/rascalcore Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Original file line number Diff line number Diff line change @@ -325,13 +325,13 @@ public RascalCompilerConfig getVSCodeCompilerConfig(){
325325
326326// ---- Outdated TypePal Usage -----------------------------------------------------------------
327327
328- public PathConfig getOutdatedTPLPathConfig (bool compier = true ) {
328+ public PathConfig getOutdatedTPLPathConfig (bool compiler = true ) {
329329 return makePathConfig (RASCAL_CORE ,
330330 [RASCAL_CORE + "src/org/rascalmpl/core/library" ],
331331 [ RASCAL , OUTDATED_TYPEPAL ],
332332 compiler =compiler );
333333}
334334
335- public RascalCompilerConfig getOutdatedTPLCompilerConfig (bool compier = true ){
335+ public RascalCompilerConfig getOutdatedTPLCompilerConfig (bool compiler = true ){
336336 return rascalCompilerConfig (getOutdatedTPLPathConfig (compiler =compiler ))[verbose = true ][logWrittenFiles =true ];
337337}
Original file line number Diff line number Diff line change 1+ module lang ::rascalcore ::compile ::Examples ::A
2+
3+ import IO ;
4+ import lang ::rascalcore ::compile ::Examples ::B ;
5+
6+ void printA () {
7+ println ("A" );
8+ }
9+
10+ void printAB () {
11+ printA ();
12+ printB ();
13+ }
Original file line number Diff line number Diff line change 1+ module lang ::rascalcore ::compile ::Examples ::B
2+ import IO ;
3+ import lang ::rascalcore ::compile ::Examples ::A ;
4+
5+ void printB () {
6+ println ("B" );
7+ }
8+
9+ void printBA () {
10+ printB ();
11+ printA ();
12+ }
You can’t perform that action at this time.
0 commit comments