internal rename of romsub to extsub

This commit is contained in:
Irmen de Jong
2024-11-06 21:42:16 +01:00
parent 77e376f6bf
commit c702c4a6df
12 changed files with 44 additions and 44 deletions

View File

@@ -34,7 +34,7 @@ class TestCompilerOnCharLit: FunSpec({
.singleOrNull { it.origin== AssignmentOrigin.VARINIT && it.target.identifier?.targetVarDecl(program) === vardecl }
test("testCharLitAsRomsubArg") {
test("testCharLitAsExtsubArg") {
val platform = Cx16Target()
val result = compileText(platform, false, """
main {
@@ -57,7 +57,7 @@ class TestCompilerOnCharLit: FunSpec({
arg.number shouldBe platform.encodeString("\n", Encoding.PETSCII)[0].toDouble()
}
test("testCharVarAsRomsubArg") {
test("testCharVarAsExtsubArg") {
val platform = Cx16Target()
val result = compileText(platform, false, """
main {
@@ -92,7 +92,7 @@ class TestCompilerOnCharLit: FunSpec({
initializerValue.number shouldBe platform.encodeString("\n", Encoding.PETSCII)[0].toDouble()
}
test("testCharConstAsRomsubArg") {
test("testCharConstAsExtsubArg") {
val platform = Cx16Target()
val result = compileText(platform, false, """
main {