diff options
| author | gingerBill <bill@gingerbill.org> | 2021-10-20 00:40:03 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-10-20 00:40:03 +0100 |
| commit | 82b6772ea4fa9872a1fb98305814be8cf7f2c7c4 (patch) | |
| tree | 2a10e6b99987750e655af2843dc288f4c6eb6a83 /src/parser.cpp | |
| parent | 662cbaf425a54127dea206c3a35d776853bac169 (diff) | |
Support matrix literals
Diffstat (limited to 'src/parser.cpp')
| -rw-r--r-- | src/parser.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parser.cpp b/src/parser.cpp index c29cf70d9..83da481d5 100644 --- a/src/parser.cpp +++ b/src/parser.cpp @@ -2569,6 +2569,7 @@ bool is_literal_type(Ast *node) { case Ast_DynamicArrayType: case Ast_MapType: case Ast_BitSetType: + case Ast_MatrixType: case Ast_CallExpr: return true; } |