-- Copyright (c) 2002-2011, Tim Sheard -- OGI School of Science & Engineering, Oregon Health & Science University -- Maseeh College of Engineering, Portland State University -- Subject to conditions of distribution and use; see LICENSE.txt for details. -- Wed Sep 7 18:45:44 CEST 2011 -- Omega Interpreter: version 1.5.1 module TokenDef(tokenDef) where -- This is a sample TokenDef module. Usually one exists in the -- same directory as the file that imports ParserAll import StdTokenDef import CommentDef stratusStyle = haskellStyle { commentEnd = cEnd , commentStart = cStart , commentLine = cLine , nestedComments = nestedC , reservedNames = ["let","case","in","of","data","where"] , reservedOpNames= ["=","\\"] } tokenDef = stratusStyle