This commit is contained in:
Irmen de Jong 2022-04-01 01:10:13 +02:00
parent f7431f809e
commit c57af5e81b
2 changed files with 2 additions and 1 deletions

View File

@ -56,7 +56,7 @@ class PtBinaryExpression(val operator: String, type: DataType, position: Positio
class PtContainmentCheck(position: Position): PtExpression(DataType.UBYTE, position) {
val element: PtExpression // either a PtIdentifier or PtNumber
val element: PtExpression
get() = children[0] as PtExpression
val iterable: PtIdentifier
get() = children[1] as PtIdentifier

View File

@ -4,6 +4,7 @@ TODO
For next release
^^^^^^^^^^^^^^^^
- fix assembler application compiler crash
- x16: add new keyboard APIs https://github.com/commanderx16/x16-docs/blob/master/Commander%20X16%20Programmer%27s%20Reference%20Guide.md#keyboard
- x16: optimize diskio load_raw because headerless files are now supported https://github.com/commanderx16/x16-rom/pull/216
note: must still work on c64/c128 that don't have this!
- x16: fix wormfood (requires new VTUI lib)