‹call›‹call›<called>

This commit is contained in:
AF 2021-07-26 19:24:02 +03:00
parent f317ccb8d5
commit 5c597ce1f9

View File

@ -14,7 +14,7 @@ def transply(source: str) -> bytes:
pass pass
elif c in '/': elif c in '/':
b.write(bytes([CODE_CALL])) b.write(bytes([CODE_CALL]))
elif c in '{': elif c in '{':
b.write(bytes([CODE_CALL, CODE_QOPN])) b.write(bytes([CODE_CALL, CODE_QOPN]))
elif c in '(': elif c in '(':
b.write(bytes([CODE_MAKE])) b.write(bytes([CODE_MAKE]))
@ -34,7 +34,7 @@ def transply(source: str) -> bytes:
b.write(bytes([CODE_QUOT])) b.write(bytes([CODE_QUOT]))
elif c in '<': elif c in '<':
b.write(bytes([CODE_QOPN])) b.write(bytes([CODE_QOPN]))
elif c in '>': elif c in '>':
b.write(bytes([CODE_QCLS])) b.write(bytes([CODE_QCLS]))
else: else:
value = c.encode() value = c.encode()