metamodel: rename 'universal' to 'enum'
[nit.git] / src / parser / xss / tokens.xss
index cfbea49..5352944 100644 (file)
@@ -1,35 +1,34 @@
-/* This file is part of NIT ( http://www.nitlanguage.org ).
- *
- * Copyright 2008 Jean Privat <jean@pryen.org>
- * Based on algorithms developped for ( http://www.sablecc.org/ ).
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
+$ // This file is part of NIT ( http://www.nitlanguage.org ).
+$ //
+$ // Copyright 2008 Jean Privat <jean@pryen.org>
+$ // Based on algorithms developped for ( http://www.sablecc.org/ ).
+$ //
+$ // Licensed under the Apache License, Version 2.0 (the "License");
+$ // you may not use this file except in compliance with the License.
+$ // You may obtain a copy of the License at
+$ //
+$ //     http://www.apache.org/licenses/LICENSE-2.0
+$ //
+$ // Unless required by applicable law or agreed to in writing, software
+$ // distributed under the License is distributed on an "AS IS" BASIS,
+$ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+$ // See the License for the specific language governing permissions and
+$ // limitations under the License.
 
 $ template make_abs_tokens()
 $ foreach {//token}
 $ if {@parser_index}    
 class @ename
-special Token
+       super Token
 end
 $ end
 $ end
-class EOF 
-special Token
+class EOF
+       super Token
 private init noinit do end
 end
 class PError
-special EOF
+       super EOF
 private init noinit do end
 end
 $ end template
@@ -37,8 +36,8 @@ $ end template
 $ template make_tokens()
 
 redef class Token
-    readable writable var _text: String 
-    
+    readable var _text: String
+
     fun parser_index: Int is abstract
 
     redef fun to_s: String do
@@ -47,11 +46,11 @@ redef class Token
 end
 
 $ foreach {//token}
-$ if {@parser_index}    
+$ if {@parser_index}
 redef class @ename
     redef fun parser_index: Int
     do
-       return @parser_index
+       return @parser_index
     end
 
 $ if {not(@text)}
@@ -67,15 +66,15 @@ $ end
     end
 end
 
-$ end if 
+$ end if
 $ end foreach
 
-redef class EOF 
+redef class EOF
     redef fun parser_index: Int
     do
-       return ${tokens/eof/@parser_index}
+       return ${tokens/eof/@parser_index}
     end
-    
+
     init(loc: Location)
     do
         _text = ""
@@ -84,8 +83,8 @@ redef class EOF
 end
 
 redef class PError
-    readable writable var _message: String 
-    
+    readable var _message: String
+
     init init_error(message: String, loc: Location)
     do
                init(loc)