Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ProB Rodin Plugin
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
general
stups
ProB Rodin Plugin
Commits
0f21e04b
Commit
0f21e04b
authored
12 years ago
by
Lukas Ladenberger
Browse files
Options
Downloads
Plain Diff
Merge branch 'develop' into feature/multiview
parents
449bf918
dce251d6
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
de.prob.core/src/de/prob/eventb/translator/ExpressionVisitor.java
+3
-1
3 additions, 1 deletion
...core/src/de/prob/eventb/translator/ExpressionVisitor.java
with
3 additions
and
1 deletion
de.prob.core/src/de/prob/eventb/translator/ExpressionVisitor.java
+
3
−
1
View file @
0f21e04b
...
...
@@ -115,6 +115,7 @@ public class ExpressionVisitor extends SimpleVisitorAdapter implements // NOPMD
// we need some abilities of the linked list, using List is not an option
private
boolean
expressionSet
=
false
;
@SuppressWarnings
(
"unused"
)
private
ExpressionVisitor
()
{
// we want to prevent clients from calling
// the default constructor
super
();
...
...
@@ -166,7 +167,8 @@ public class ExpressionVisitor extends SimpleVisitorAdapter implements // NOPMD
final
PPredicate
pr
=
predicateVisitor
.
getPredicate
();
final
ExpressionVisitor
expressionVisitor
=
new
ExpressionVisitor
();
final
ExpressionVisitor
expressionVisitor
=
new
ExpressionVisitor
(
bounds
);
expression
.
getExpression
().
accept
(
expressionVisitor
);
final
PExpression
ex
=
expressionVisitor
.
getExpression
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment