]> git.lizzy.rs Git - micro.git/blobdiff - runtime/syntax/csharp.yaml
better top
[micro.git] / runtime / syntax / csharp.yaml
index e027e0ca5bfd43250f203ebe6e9d10022a2aa8dd..620aada01d3fb2a5948cdcfd4a2ee382b14d2501 100644 (file)
@@ -1,29 +1,51 @@
-filetype: c#
+filetype: csharp
 
-detect: 
+detect:
     filename: "\\.cs$"
 
 rules:
+    # Class
     - identifier.class: "class +[A-Za-z0-9]+ *((:) +[A-Za-z0-9.]+)?"
+
+      # Annotation
     - identifier.var: "@[A-Za-z]+"
-    - identifier: "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[()]"
+
+    - identifier: "([A-Za-z0-9_]*[[:space:]]*[()])"
     - type: "\\b(bool|byte|sbyte|char|decimal|double|float|IntPtr|int|uint|long|ulong|object|short|ushort|string|base|this|var|void)\\b"
     - statement: "\\b(alias|as|case|catch|checked|default|do|dynamic|else|finally|fixed|for|foreach|goto|if|is|lock|new|null|return|switch|throw|try|unchecked|while)\\b"
     - statement: "\\b(abstract|async|class|const|delegate|enum|event|explicit|extern|get|implicit|in|internal|interface|namespace|operator|out|override|params|partial|private|protected|public|readonly|ref|sealed|set|sizeof|stackalloc|static|struct|typeof|unsafe|using|value|virtual|volatile|yield)\\b"
+      # LINQ-only keywords (ones that cannot be used outside of a LINQ query - lots others can)
     - statement: "\\b(from|where|select|group|info|orderby|join|let|in|on|equals|by|ascending|descending)\\b"
     - special: "\\b(break|continue)\\b"
     - constant.bool: "\\b(true|false)\\b"
     - symbol.operator: "[\\-+/*=<>?:!~%&|]"
     - constant.number: "\\b([0-9._]+|0x[A-Fa-f0-9_]+|0b[0-1_]+)[FL]?\\b"
-    - constant.string: "\"(\\\\.|[^\"])*\"|'(\\\\.|[^'])*'"
-    - constant.specialChar: "\\\\([btnfr]|'|\\\"|\\\\)"
-    - constant.specialChar: "\\\\u[A-Fa-f0-9]{4}"
-    - comment: "(^|[[:space:]])//.*"
+
+    - constant.string:
+        start: "\""
+        end: "\""
+        skip: "\\\\."
+        rules:
+            - constant.specialChar: "\\\\([btnfr]|'|\\\"|\\\\)"
+            - constant.specialChar: "\\\\u[A-Fa-f0-9]{4}"
+
+    - constant.string:
+        start: "'"
+        end: "'"
+        skip: "\\\\."
+        rules:
+            - constant.specialChar: "\\\\([btnfr]|'|\\\"|\\\\)"
+            - constant.specialChar: "\\\\u[A-Fa-f0-9]{4}"
+
+    - comment:
+        start: "//"
+        end: "$"
+        rules:
+            - todo: "(TODO|XXX|FIXME):?"
+
     - comment:
         start: "/\\*"
         end: "\\*/"
-        rules: []
+        rules:
+            - todo: "(TODO|XXX|FIXME):?"
 
-    - todo: "TODO:?"
-    - indent-char.whitespace: "[[:space:]]+$"
-    - indent-char: "   + +| +  +"