Skip to content

Commit

Permalink
FIX: test_unparse_validate
Browse files Browse the repository at this point in the history
(Added 'KW_IN' keyword to TOKEN_MAP in compiler to fix the issue with python to Jac ast conversion)
  • Loading branch information
kugesan1105 committed Oct 31, 2024
1 parent cfca2cc commit 7cc654d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jac/jaclang/compiler/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def generate_static_parser(force: bool = False) -> None:
"STAR_POW_EQ": "**=", "MUL_EQ": "*=", "FLOOR_DIV_EQ": "//=",
"DIV_EQ": "/=", "MOD_EQ": "%=", "BW_AND_EQ": "&=",
"BW_OR_EQ": "|=", "BW_XOR_EQ": "^=", "BW_NOT_EQ": "~=",
"LSHIFT_EQ": "<<=", "RSHIFT_EQ": ">>=", "ELLIPSIS": "...",
"LSHIFT_EQ": "<<=", "RSHIFT_EQ": ">>=", "ELLIPSIS": "...", "KW_IN": "in",
}
)
# fmt: on
Expand Down

0 comments on commit 7cc654d

Please sign in to comment.