-- Copyright (c) 2002-2013, Tim Sheard, Gabor Greif -- OGI School of Science & Engineering, Oregon Health & Science University -- Maseeh College of Engineering, Portland State University -- See LICENSE.txt for details. -- Wed Aug 21 12:06:10 CEST 2013 -- Omega Interpreter: version 1.5.2 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