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(){
325
325
326
326
// ---- Outdated TypePal Usage -----------------------------------------------------------------
327
327
328
- public PathConfig getOutdatedTPLPathConfig (bool compier = true ) {
328
+ public PathConfig getOutdatedTPLPathConfig (bool compiler = true ) {
329
329
return makePathConfig (RASCAL_CORE ,
330
330
[RASCAL_CORE + "src/org/rascalmpl/core/library" ],
331
331
[ RASCAL , OUTDATED_TYPEPAL ],
332
332
compiler =compiler );
333
333
}
334
334
335
- public RascalCompilerConfig getOutdatedTPLCompilerConfig (bool compier = true ){
335
+ public RascalCompilerConfig getOutdatedTPLCompilerConfig (bool compiler = true ){
336
336
return rascalCompilerConfig (getOutdatedTPLPathConfig (compiler =compiler ))[verbose = true ][logWrittenFiles =true ];
337
337
}
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