diff src/luan/LuanElement.java @ 80:851e356101c1

add LuanElement.COMPILER git-svn-id: https://luan-java.googlecode.com/svn/trunk@81 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Fri, 15 Feb 2013 23:59:32 +0000
parents 64ecb7a3aad7
children 1f8b6edc2b08
line wrap: on
line diff
--- a/src/luan/LuanElement.java	Fri Feb 15 23:12:15 2013 +0000
+++ b/src/luan/LuanElement.java	Fri Feb 15 23:59:32 2013 +0000
@@ -14,4 +14,10 @@
 			return "Java";
 		}
 	};
+
+	public static final LuanElement COMPILER = new LuanElement(){
+		@Override String location() {
+			return "Compiler";
+		}
+	};
 }