prog8/compiler/test
2022-07-09 22:00:46 +02:00
..
arithmetic "not" operator removed from ast and codegen (it's been replaced with x==0 as equivalent) 2022-06-29 01:13:08 +02:00
ast logical and/or/xor/not all replaced by bitwise &,|,^,~ (ast, codegens) 2022-07-02 00:38:17 +02:00
codegeneration logical and/or/xor/not all replaced by bitwise &,|,^,~ (ast, codegens) 2022-07-02 00:38:17 +02:00
comparisons
fixtures
helpers added -D command line option to define symbols in the assembly file 2022-07-06 23:40:36 +02:00
helpers_pathsTests.kt update kotest 2022-06-26 18:51:03 +02:00
ModuleImporterTests.kt update kotest 2022-06-26 18:51:03 +02:00
ProjectConfig.kt
TestAstChecks.kt
TestBuiltinFunctions.kt fix pop() name scoping 2022-07-02 23:27:08 +02:00
TestCallgraph.kt cleanup 2022-05-22 23:11:22 +02:00
TestCompilerOnCharLit.kt
TestCompilerOnExamples.kt added maze example 2022-07-09 22:00:46 +02:00
TestCompilerOnImportsAndIncludes.kt logical and/or/xor/not all replaced by bitwise &,|,^,~ (ast, codegens) 2022-07-02 00:38:17 +02:00
TestCompilerOnRanges.kt logical and/or/xor/not all replaced by bitwise &,|,^,~ (ast, codegens) 2022-07-02 00:38:17 +02:00
TestCompilerOptionLibdirs.kt added -D command line option to define symbols in the assembly file 2022-07-06 23:40:36 +02:00
TestImportedModulesOrderAndOptions.kt update kotest 2022-06-26 18:51:03 +02:00
TestMemory.kt cleanup 2022-05-22 23:11:22 +02:00
TestNumbers.kt allow casting negative numbers to unsigned, result = 2's complement 2022-06-05 14:21:10 +02:00
TestNumericLiteral.kt properly optimize X - -1 and X + -1, this also fixes type change of ubyte - 2 + 10 2022-06-05 15:35:29 +02:00
TestOptimization.kt fix problematic optimizations to logical expressions 2022-07-02 00:56:24 +02:00
TestPtNumber.kt
TestScoping.kt added unit test for name shadowing warning 2022-06-04 21:35:48 +02:00
TestStringEncodings.kt
TestSubroutines.kt vm: fix expression codegen for pointer indexing 2022-06-04 19:32:35 +02:00
TestSymbolTable.kt
TestTypecasts.kt if passing a subroutine or label name as an uword argument, without &, add the addressof automatically 2022-07-02 23:55:32 +02:00
ZeropageTests.kt