Removed 'dynamic' keyword

This commit is contained in:
nocturn9x 2021-09-14 11:00:50 +02:00
parent 6bc713b2d0
commit 63e2912d81
2 changed files with 2 additions and 3 deletions

View File

@ -81,8 +81,7 @@ const reserved = to_table({
"assert": Assert, "or": LogicalOr, "assert": Assert, "or": LogicalOr,
"and": LogicalAnd, "del": Del, "and": LogicalAnd, "del": Del,
"async": Async, "await": Await, "async": Async, "await": Await,
"dynamyc": Dynamic, "foreach": Foreach, "foreach": Foreach, "inf": Infinity
"inf": Infinity
}) })
type type

View File

@ -37,7 +37,7 @@ type
Continue, Var, Let, Const, Is, Continue, Var, Let, Const, Is,
Return, Async, Class, Import, From, Return, Async, Class, Import, From,
IsNot, Raise, Assert, Del, Await, IsNot, Raise, Assert, Del, Await,
Dynamic, Foreach, Infinity Foreach, Infinity
# Basic types # Basic types