-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: handle cells in code generator
- Loading branch information
1 parent
60ca2f3
commit 8a7926f
Showing
7 changed files
with
146 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...hon/expressions/infix operation/generated/tests/generator/infixOperation/gen_input.py.map
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
...ython/expressions/prefix operation/generated/tests/generator/prefixOperation/gen_input.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
# Imports ---------------------------------------------------------------------- | ||
|
||
from tests.generator.prefixOperation import f, g, h | ||
from tests.generator.prefixOperation import cell, f, g, h | ||
|
||
# Pipelines -------------------------------------------------------------------- | ||
|
||
def test(): | ||
f(not (g())) | ||
f(~(cell())) | ||
f(-(h())) | ||
f(-(cell())) |
2 changes: 1 addition & 1 deletion
2
...n/expressions/prefix operation/generated/tests/generator/prefixOperation/gen_input.py.map
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters