packages feed

illuminate-0.1: Text/Highlighting/Illuminate/CSharp.x

{
{-# OPTIONS -w  #-} -- Suppress warnings from alex-generated code
module Text.Highlighting.Illuminate.CSharp (lexer) where
}

%wrapper "illuminate"

$alpha = [A-Za-z]
$digit = [0-9]
$alphanum = [$alpha $digit]
$wordchar = [$alphanum \_]
$symbol = [\~ \! \% \^ \* \( \) \- \+ \= \[ \] \" \: \; \, \. \/ \? \& \< \> \|]
$hexdigit = [$digit A-F a-f]

@hexnumber = "0x" $hexdigit+
@number = [\+ \-]? (@hexnumber |
                    (($digit* \.)?  $digit+ ([eE] [\+\-]? $digit+)?)
                   ) u? (("int" ("8"|"16"|"32"|"64")) | L)?
@keyword = ("abstract"|"event"|"new"|"struct"|
 "as"|"explicit"|"null"|"switch"|
 "base"|"extern"|"this"|
 "false"|"operator"|"throw"|
 "break"|"finally"|"out"|"true"|
 "fixed"|"override"|"try"|
 "case"|"params"|"typeof"|
 "catch"|"for"|"private"|
 "foreach"|"protected"|
 "checked"|"goto"|"public"|"unchecked"|
 "class"|"if"|"readonly"|"unsafe"|
 "const"|"implicit"|"ref"|
 "continue"|"in"|"return"|
 "virtual"|
 "default"|"interface"|"sealed"|"volatile"|
 "delegate"|"internal"|
 "do"|"is"|"sizeof"|"while"|
 "lock"|"stackalloc"|
 "else"|"static"|
 "enum"|"namespace"|
 "get"|"partial"|"set"|
 "value"|"where"|"yield")

@type = ("bool"|"byte"|"sbyte"|"char"|"decimal"|"double"|
 "float"|"int"|"uint"|"long"|"ulong"|"object"|
 "short"|"ushort"|"string"|"void")

@alert = (TODO|FIXME|BUG)[\:]?
@string = \" ([^ \" \\] | \\ .)* \"
@char   = \' ([^ \' \\] | \\ .)* \'

tokens :-

<comment> {
  "*/"   { tok Comment ==> popContext }
  @alert { tok Alert }
}

<linecomment> {
  @alert { tok Alert }
  \n     { tok Whitespace ==> popContext } 
}

<struct> {
  $white+       { tok Whitespace }
  $wordchar+    { tok Type ==> popContext } 
}

<include> {
  $white+       { tok Whitespace }
  \< [^ \>]* \> { tok String ==> popContext }
  @string       { tok String ==> popContext }
}

<0> {
  "/*"   { tok Comment ==> pushContext  (comment, Comment) }
  "//"   { tok Comment ==> pushContext  (linecomment, Comment) }
  ^ $white* $wordchar+ \:   { tok Label }
  ("struct"|"class"|"typename") / $white  { tok Keyword ==> pushContext  (struct, Plain) } 
  ^ $white* \# $white* "include"  { tok Preproc ==> pushContext  (include, Plain) }
  ^ $white* \# $white* $wordchar*  { tok Preproc }
  "using"  / ~$wordchar  { tok Preproc }
  @keyword / ~$wordchar  { tok Keyword }
  @type / ~$wordchar     { tok Type }
  @number                { tok Number }
  @string                { tok String }
  @char                  { tok Char }
  $symbol                { tok Symbol }
  [\{ \}]                { tok CBracket }
  [$alpha \_] $wordchar* $white* / \( { tok Function }
  [$alpha \_]$wordchar*  { tok VarId }
}

 .           { plain }
 \n          { tok Whitespace }

{
lexer :: Lexer
lexer = Lexer { name = "C#"
              , aliases = ["c#","csharp"]
              , filenames = ["*.cs"]
              , scan = scanner }
}