diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2021-11-28 10:38:37 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-28 10:38:37 +0000 |
| commit | 9f0a30e36e65f9c94dd068ece53377251e00742e (patch) | |
| tree | b365bf93fbbffa3dc939f9bef5c92480f9104f2c /core | |
| parent | 2b07afaf701a7a67f86ec907ea232a0b47ce082a (diff) | |
| parent | 517c8ff1dd069591e225c6dd047a7d866948131b (diff) | |
Merge pull request #1337 from DanielGavin/parser-fixdev-2021-12
Add Matrix_Type as literal type on "core:odin"
Diffstat (limited to 'core')
| -rw-r--r-- | core/odin/parser/parser.odin | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/odin/parser/parser.odin b/core/odin/parser/parser.odin index 7660005e0..b151d0188 100644 --- a/core/odin/parser/parser.odin +++ b/core/odin/parser/parser.odin @@ -2825,6 +2825,7 @@ is_literal_type :: proc(expr: ^ast.Expr) -> bool { ast.Dynamic_Array_Type, ast.Map_Type, ast.Bit_Set_Type, + ast.Matrix_Type, ast.Call_Expr: return true } |