forked from MagicStack/MagicPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexpr17.py
More file actions
29 lines (26 loc) · 1.15 KB
/
expr17.py
File metadata and controls
29 lines (26 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
a++
b--
++a
--b
a++c
c--b
a(--a)
a : source.python
++ : invalid.illegal.operator.python, source.python
b : source.python
-- : invalid.illegal.operator.python, source.python
++ : invalid.illegal.operator.python, source.python
a : source.python
-- : invalid.illegal.operator.python, source.python
b : source.python
a : source.python
++ : invalid.illegal.operator.python, source.python
c : source.python
c : source.python
-- : invalid.illegal.operator.python, source.python
b : source.python
a : meta.function-call.generic.python, meta.function-call.python, source.python
( : meta.function-call.python, punctuation.definition.arguments.begin.python, source.python
-- : invalid.illegal.operator.python, meta.function-call.arguments.python, meta.function-call.python, source.python
a : meta.function-call.arguments.python, meta.function-call.python, source.python
) : meta.function-call.python, punctuation.definition.arguments.end.python, source.python