Comments nu mogelijk
[cc1516.git] / src / lex.dcl
index 0b064b4..a713e5d 100644 (file)
@@ -2,7 +2,7 @@ definition module lex
 
 from Data.Either import :: Either
 
-:: Token :== (Int, TokenValue)
+:: Token :== (Int, Int, TokenValue)
 :: TokenValue
        //Value tokens
        = IdentToken [Char] // Identifier
@@ -55,6 +55,4 @@ from Data.Either import :: Either
 
 :: LexerOutput :== Either String [Token]
 
-(===) :: TokenValue Token -> Bool
-
 lexer :: [Char] -> LexerOutput