mirror of
https://github.com/irmen/prog8.git
synced 2025-01-24 06:30:24 +00:00
todo
This commit is contained in:
parent
f7431f809e
commit
c57af5e81b
@ -56,7 +56,7 @@ class PtBinaryExpression(val operator: String, type: DataType, position: Positio
|
|||||||
|
|
||||||
|
|
||||||
class PtContainmentCheck(position: Position): PtExpression(DataType.UBYTE, position) {
|
class PtContainmentCheck(position: Position): PtExpression(DataType.UBYTE, position) {
|
||||||
val element: PtExpression // either a PtIdentifier or PtNumber
|
val element: PtExpression
|
||||||
get() = children[0] as PtExpression
|
get() = children[0] as PtExpression
|
||||||
val iterable: PtIdentifier
|
val iterable: PtIdentifier
|
||||||
get() = children[1] as PtIdentifier
|
get() = children[1] as PtIdentifier
|
||||||
|
@ -4,6 +4,7 @@ TODO
|
|||||||
For next release
|
For next release
|
||||||
^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^
|
||||||
- fix assembler application compiler crash
|
- 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
|
- 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!
|
note: must still work on c64/c128 that don't have this!
|
||||||
- x16: fix wormfood (requires new VTUI lib)
|
- x16: fix wormfood (requires new VTUI lib)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user