Browse Source

Ajout méthode getExpression

Arthur Brandao 6 years ago
parent
commit
9a09f9dd73
1 changed files with 6 additions and 0 deletions
  1. 6 0
      src/migl/lisp/LispParser.java

+ 6 - 0
src/migl/lisp/LispParser.java

@@ -162,5 +162,11 @@ public class LispParser {
 		}
 		return list;
 	}
+	
+	/* --- Getter --- */
+	
+	public String getExpression() {
+		return this.expr;
+	}
 
 }