Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,9 @@ object QuantifiedPermissions {
case m@Method(_, _, _, pres, posts, _) if m != root =>
// use only specification of called methods
pres ++ posts
case Function(_, _, _, pres, posts, _) =>
// use only specification of called functions
pres ++ posts
case _ => Seq(currentRoot)
}

Expand Down Expand Up @@ -134,6 +137,9 @@ object QuantifiedPermissions {
case m@Method(_, _, _, pres, posts, _) if m != root =>
// use only specification of called methods
pres ++ posts
case Function(_, _, _, pres, posts, _) =>
// use only specification of called functions
pres ++ posts
case _ => Seq(currentRoot)
}

Expand Down