Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tla2bAST
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
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
tla2bAST
Commits
d217d448
Commit
d217d448
authored
7 months ago
by
Jan Gruteser
Browse files
Options
Downloads
Patches
Plain Diff
fix order
parent
c7e7adb4
Branches
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#144584
passed
7 months ago
Stage: test
Stage: deploy
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/de/tla2bAst/Translator.java
+1
-1
1 addition, 1 deletion
src/main/java/de/tla2bAst/Translator.java
with
1 addition
and
1 deletion
src/main/java/de/tla2bAst/Translator.java
+
1
−
1
View file @
d217d448
...
@@ -286,8 +286,8 @@ public class Translator implements TranslationGlobals {
...
@@ -286,8 +286,8 @@ public class Translator implements TranslationGlobals {
}
}
final
RecursiveMachineLoader
rml
=
new
RecursiveMachineLoader
(
f
.
getParent
(),
bparser
.
getContentProvider
());
public
RecursiveMachineLoader
parseAllMachines
(
final
Start
ast
,
final
File
f
,
final
BParser
bparser
)
throws
BCompoundException
{
public
RecursiveMachineLoader
parseAllMachines
(
final
Start
ast
,
final
File
f
,
final
BParser
bparser
)
throws
BCompoundException
{
final
RecursiveMachineLoader
rml
=
new
RecursiveMachineLoader
(
f
.
getParent
(),
bparser
.
getContentProvider
());
rml
.
loadAllMachines
(
f
,
ast
,
bparser
.
getDefinitions
());
rml
.
loadAllMachines
(
f
,
ast
,
bparser
.
getDefinitions
());
// this is required for correct positions in ProB2(-UI) when rml.printAsProlog is called
// this is required for correct positions in ProB2(-UI) when rml.printAsProlog is called
rml
.
setPositionPrinter
(
new
TlaTypePrinter
(
rml
.
getNodeIdMapping
(),
bAstCreator
.
getTypes
()));
rml
.
setPositionPrinter
(
new
TlaTypePrinter
(
rml
.
getNodeIdMapping
(),
bAstCreator
.
getTypes
()));
...
...
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