-
Notifications
You must be signed in to change notification settings - Fork 0
Support for function invocations as If conditions #28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
7cd0388
Added support for function invocation in If condition
Pichers 49a2af0
Added a check for invication return type (must be boolean)
Pichers 088781b
Added related test
Pichers eeeac5d
removed java type check
Pichers 43d6945
Added new test for permission check after invocations in if condition
Pichers File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| package latte; | ||
|
|
||
| import specification.Free; | ||
| import specification.Unique; | ||
| import specification.Shared; | ||
|
|
||
| /* | ||
| * This file is part of the Latte test suite. | ||
| */ | ||
| class MyNode { | ||
|
|
||
| @Unique Object value; | ||
| @Unique Node next; | ||
|
|
||
| /** | ||
| * Constructor for the Node class using @Free value and next nodes | ||
| * @param value | ||
| * @param next | ||
| */ | ||
| public MyNode (@Free Object value, @Free Node next) { | ||
| this.value = value; | ||
| this.next = next; | ||
| } | ||
|
|
||
| public @Unique Object test(@Free Object v1, @Free Object v2, @Free Node n1, boolean c1){ | ||
| @Shared MyNode n = new MyNode(v1, n1); | ||
| Object o1 = new Object(); | ||
| Node n2 = new Node(); | ||
|
|
||
| if (this.test(n, o1, n2)) { | ||
| this.value = v2; | ||
| } else { | ||
| this.value = v2; | ||
| } | ||
| return this.value; | ||
| } | ||
|
|
||
| public boolean test2(@Shared MyNode node, @Free Object o, @Free Node next){ | ||
| @Free MyNode mn = new MyNode(o, next); | ||
| node = mn; | ||
|
|
||
| return node == this; | ||
| } | ||
| } |
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| package latte; | ||
|
|
||
| import specification.Free; | ||
| import specification.Unique; | ||
|
|
||
| /* | ||
| * This file is part of the Latte test suite. | ||
| */ | ||
| class MyNode { | ||
|
|
||
| @Unique Object value; | ||
| @Unique Node next; | ||
|
|
||
| /** | ||
| * Constructor for the Node class using @Free value and next nodes | ||
| * @param value | ||
| * @param next | ||
| */ | ||
| public MyNode (@Free Object value, @Free Node next) { | ||
| this.value = value; | ||
| this.next = next; | ||
| } | ||
|
|
||
| public void test(@Free Object v1, boolean c1){ | ||
| if (boolRead(c1)) { | ||
| this.value = v1; | ||
| } else { | ||
| this.value = null; | ||
| } | ||
| } | ||
|
|
||
| private boolean boolRead(boolean b){ | ||
| return b; | ||
| } | ||
| } | ||
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now add more tests with methods that use the Objects with permissions like
@Unique, and see if their changes are added to the context after the call.