File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ Transformation of literal values happens at the AST level; see the
3434
3535### Expressions
3636
37- #### Constant Expression
37+ #### Constant Expressions
3838
3939Constant expressions are translated to their Python equivalents.
4040
@@ -44,7 +44,7 @@ Ternary expressions are translated to their Python form (`val if condition else
4444other`)
4545
4646
47- ### Prefix Operators
47+ #### Prefix Operators
4848
4949All of the Java prefix operators are supported:
5050
@@ -53,7 +53,7 @@ All of the Java prefix operators are supported:
5353In the case of ` ++ ` and ` -- ` , java2python translates to ` += 1 ` and ` -= 1 ` . If
5454necessary, those expressions are moved outside of statements.
5555
56- ### Assignment Operators
56+ #### Assignment Operators
5757
5858All of the following assignment operators are translated into their Python
5959equivalents:
@@ -66,7 +66,7 @@ replaces the operator with that function and includes the function within the
6666output. This behavior is controlled by the ` modulePrologueHandlers ` config
6767handler.
6868
69- ### Infix Operators
69+ #### Infix Operators
7070
7171The following operators are translated to their Python equivalents:
7272
You can’t perform that action at this time.
0 commit comments