Skip to content
This repository was archived by the owner on Sep 20, 2021. It is now read-only.

Commit

Permalink
Replaced the example += with compound assignment to be more general.
Browse files Browse the repository at this point in the history
  • Loading branch information
camrein committed May 5, 2019
1 parent a6113e5 commit b9b8653
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The following list is a summary of improvements that could be applied to the cod
- Use Roslyn's cancellation token more thoroughly.
- Use symbols in the intermediate representation instead of the identifiers.
- Possibly use dedicated classes to represent 3AC instruction to reflect the simplifications instead of re-using the classes of the original IR.
- Correctly transform the `+=` operator when generating the IR. Although, it is not relevant for the correctness of the prototype.
- Correctly transform the compound assignment operators such as `+=` when generating the IR. Although, it is not relevant for the correctness of the prototype.
- The implementations of the interprocedural analyses have transfer-functions that apply special state operations when transferring from and to an invoked method to avoid variable name conflicts between methods. A switch to symbols for variables instead of identifiers should make this obsolete.
- Generate and optimize the IR of the methods lazily instead of eagerly.

Expand Down

0 comments on commit b9b8653

Please sign in to comment.