Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
sarah.grebing
ProofScriptParser
Commits
e840f22b
Commit
e840f22b
authored
Jan 17, 2018
by
Alexander Weigl
Browse files
fix stepping into last command
parent
9f657295
Pipeline
#16944
passed with stages
in 8 minutes and 46 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
lang/src/main/java/edu/kit/iti/formal/psdbg/parser/TransformAst.java
View file @
e840f22b
...
...
@@ -114,6 +114,7 @@ public class TransformAst implements ScriptLanguageVisitor<Object> {
s
.
setSignature
(
sig
);
}
s
.
setBody
((
Statements
)
ctx
.
body
.
accept
(
this
));
s
.
getBody
().
setParent
(
s
);
return
s
;
}
...
...
rt/src/main/java/edu/kit/iti/formal/psdbg/interpreter/dbg/DebuggerFramework.java
View file @
e840f22b
...
...
@@ -134,7 +134,7 @@ public class DebuggerFramework<T> {
private
void
run
()
{
try
{
interpreter
.
interpret
(
mainScript
);
//dummyproofnode
ptreeManager
.
fireStatePointerChanged
();
succeedListener
.
accept
(
this
);
}
catch
(
Exception
e
)
{
error
=
e
;
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment