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
6a6706ef
Commit
6a6706ef
authored
Apr 30, 2017
by
Sarah Grebing
Browse files
added reapet
parent
3c196318
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/edu/kit/formatl/proofscriptparser/TransformAst.java
View file @
6a6706ef
...
...
@@ -179,7 +179,10 @@ public class TransformAst implements ScriptLanguageVisitor<Object> {
}
@Override
public
Object
visitRepeatStmt
(
ScriptLanguageParser
.
RepeatStmtContext
ctx
)
{
throw
new
IllegalStateException
(
"not implemented"
);
RepeatStatement
rs
=
new
RepeatStatement
();
rs
.
setRuleContext
(
ctx
);
rs
.
setBody
((
Statements
)
ctx
.
stmtList
().
accept
(
this
));
return
rs
;
}
@Override
public
Object
visitCasesStmt
(
ScriptLanguageParser
.
CasesStmtContext
ctx
)
{
...
...
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