mirror of
https://github.com/irmen/prog8.git
synced 2025-11-01 06:16:15 +00:00
internal rename of romsub to extsub
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user