From c57af5e81b49e5e72d6217d8c514808286982299 Mon Sep 17 00:00:00 2001 From: Irmen de Jong Date: Fri, 1 Apr 2022 01:10:13 +0200 Subject: [PATCH] todo --- codeAst/src/prog8/code/ast/AstExpressions.kt | 2 +- docs/source/todo.rst | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/codeAst/src/prog8/code/ast/AstExpressions.kt b/codeAst/src/prog8/code/ast/AstExpressions.kt index 2e10fc146..8f7d5c6d2 100644 --- a/codeAst/src/prog8/code/ast/AstExpressions.kt +++ b/codeAst/src/prog8/code/ast/AstExpressions.kt @@ -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 diff --git a/docs/source/todo.rst b/docs/source/todo.rst index 4051d809c..7b1539e86 100644 --- a/docs/source/todo.rst +++ b/docs/source/todo.rst @@ -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)