language: implement list indexing

This commit is contained in:
2023-09-17 08:38:11 -07:00
parent 3b101bd48a
commit a08526c92c
14 changed files with 90 additions and 0 deletions

View File

@ -36,6 +36,7 @@ digraph A {
type_Continue [shape=box,label="Continue"]
type_NoneLiteral [shape=box,label="NoneLiteral"]
type_Native [shape=box,label="Native"]
type_IndexedBy [shape=box,label="IndexedBy"]
type_Node -> type_Expression
type_Node -> type_Symbol
type_Node -> type_Declaration
@ -64,6 +65,7 @@ digraph A {
type_Expression -> type_Break
type_Expression -> type_Continue
type_Expression -> type_NoneLiteral
type_Expression -> type_IndexedBy
type_Definition -> type_FunctionDefinition
type_Definition -> type_LetDefinition
type_Declaration -> type_ImportDeclaration
@ -108,4 +110,5 @@ digraph A {
type_ForIn -> type_Block [style=dotted]
type_Native -> type_Symbol [style=dotted]
type_Native -> type_StringLiteral [style=dotted]
type_IndexedBy -> type_Expression [style=dotted]
}