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
48f77a16
Commit
48f77a16
authored
12 years ago
by
Sebastian Krings
Browse files
Options
Downloads
Plain Diff
Merge branch 'develop' of github.com:bendisposto/prob into feature/units
parents
5feac513
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 @
48f77a16
...
@@ -115,6 +115,7 @@ public class ExpressionVisitor extends SimpleVisitorAdapter implements // NOPMD
...
@@ -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
// we need some abilities of the linked list, using List is not an option
private
boolean
expressionSet
=
false
;
private
boolean
expressionSet
=
false
;
@SuppressWarnings
(
"unused"
)
private
ExpressionVisitor
()
{
// we want to prevent clients from calling
private
ExpressionVisitor
()
{
// we want to prevent clients from calling
// the default constructor
// the default constructor
super
();
super
();
...
@@ -166,7 +167,8 @@ public class ExpressionVisitor extends SimpleVisitorAdapter implements // NOPMD
...
@@ -166,7 +167,8 @@ public class ExpressionVisitor extends SimpleVisitorAdapter implements // NOPMD
final
PPredicate
pr
=
predicateVisitor
.
getPredicate
();
final
PPredicate
pr
=
predicateVisitor
.
getPredicate
();
final
ExpressionVisitor
expressionVisitor
=
new
ExpressionVisitor
();
final
ExpressionVisitor
expressionVisitor
=
new
ExpressionVisitor
(
bounds
);
expression
.
getExpression
().
accept
(
expressionVisitor
);
expression
.
getExpression
().
accept
(
expressionVisitor
);
final
PExpression
ex
=
expressionVisitor
.
getExpression
();
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