Add cross-compilation script

This commit is contained in:
Zachary Yedidia
2016-03-22 18:17:11 -04:00
parent a5b0befba1
commit d20df210d0
84 changed files with 53 additions and 5 deletions

20
runtime/syntax/go.micro Normal file
View File

@@ -0,0 +1,20 @@
syntax "Go" "\.go$"
color identifier "[A-Za-z_][A-Za-z0-9_]*[[:space:]]*[()]"
color statement "\b(append|cap|close|complex|copy|delete|imag|len)\b"
color statement "\b(make|new|panic|print|println|protect|real|recover)\b"
color type "\b(u?int(8|16|32|64)?|float(32|64)|complex(64|128))\b"
color type "\b(uintptr|byte|rune|string|interface|bool|map|chan|error)\b"
color statement "\b(package|import|const|var|type|struct|func|go|defer|nil|iota)\b"
color statement "\b(for|range|if|else|case|default|switch|return)\b"
color statement "\b(go|goto|break|continue)\b"
color constant "\b(true|false)\b"
color statement "[-+/*=<>!~%&|^]|:="
color constant "\b([0-9]+|0x[0-9a-fA-F]*)\b|'.'"
color constant ""(\\.|[^"])*"|'(\\.|[^'])*'"
color constant "\\[abfnrtv'\"\\]"
color constant "\\([0-7]{3}|x[A-Fa-f0-9]{2}|u[A-Fa-f0-9]{4}|U[A-Fa-f0-9]{8})"
color constant "`[^`]*`"
color comment "(^|[[:space:]])//.*"
color comment (s) "/\*.*?\*/"
color todo "TODO:?"