Browse Source

Fix magic comments

pull/1/head
Malte Schmitz 9 years ago
parent
commit
4017e09598
4 changed files with 4 additions and 4 deletions
  1. +1
    -1
      src/main/java/interpreter/Evaluator.java
  2. +1
    -1
      src/main/java/interpreter/InterpreterException.java
  3. +1
    -1
      src/main/java/interpreter/Visitor.java
  4. +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`. - an integer `z`.
*/ */


/*- Header */
/*!- Header */
package interpreter; package interpreter;


import expression.*; import expression.*;


+ 1
- 1
src/main/java/interpreter/InterpreterException.java View File

@@ -5,7 +5,7 @@ InterpreterException
==================== ====================
*/ */


/*- Header */
/*!- Header */
package interpreter; package interpreter;


/*! The `InterpreterException` is raised if anything goes wrong during the evaluation of an `Expression` or /*! 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). [Visitor Pattern](https://en.wikipedia.org/wiki/Visitor_pattern).
*/ */


/*- Header */
/*!- Header */
package interpreter; package interpreter;






+ 1
- 1
src/main/java/parser/SyntaxException.java View File

@@ -5,7 +5,7 @@ SyntaxException
=============== ===============
*/ */


/*- Header */
/*!- Header */
package parser; package parser;


/*! A `SyntaxException` is raised by the function in the `Parser` if an expected was not found at the current /*! A `SyntaxException` is raised by the function in the `Parser` if an expected was not found at the current


Loading…
Cancel
Save