This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
nils
/
WhileInterpreter
mirror of
https://github.com/malteschmitz/WhileInterpreter.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
Fix magic comments
pull/1/head
Malte Schmitz
9 years ago
parent
d7de0d4ded
commit
4017e09598
4 changed files
with
4 additions
and
4 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/main/java/interpreter/Evaluator.java
+1
-1
src/main/java/interpreter/InterpreterException.java
+1
-1
src/main/java/interpreter/Visitor.java
+1
-1
src/main/java/parser/SyntaxException.java
+ 1
- 1
src/main/java/interpreter/Evaluator.java
View File
@@ -20,7 +20,7 @@ with
- an integer `z`.
*/
/*- Header */
/*
!
- Header */
package interpreter;
import expression.*;
+ 1
- 1
src/main/java/interpreter/InterpreterException.java
View File
@@ -5,7 +5,7 @@ InterpreterException
====================
*/
/*- Header */
/*
!
- Header */
package interpreter;
/*! The `InterpreterException` is raised if anything goes wrong during the evaluation of an `Expression` or
+ 1
- 1
src/main/java/interpreter/Visitor.java
View File
@@ -12,7 +12,7 @@ and in Java this is typically implemented using the
[Visitor Pattern](https://en.wikipedia.org/wiki/Visitor_pattern).
*/
/*- Header */
/*
!
- Header */
package interpreter;
+ 1
- 1
src/main/java/parser/SyntaxException.java
View File
@@ -5,7 +5,7 @@ SyntaxException
===============
*/
/*- Header */
/*
!
- Header */
package parser;
/*! A `SyntaxException` is raised by the function in the `Parser` if an expected was not found at the current
Write
Preview
Loading…
Cancel
Save