Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit 7fafe3e

Browse files
committed
Fixed spelling error.
1 parent 32cb3c5 commit 7fafe3e

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

src/org/rascalmpl/core/library/lang/rascalcore/check/TestConfigs.rsc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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+
}

0 commit comments

Comments
 (0)