Advertisement
Guest User

adasyntax

a guest
Nov 24th, 2015
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. syntax "Ada" "\.adb$" "\.ads$"
  2.  
  3. ## Data types
  4. icolor yellow "\<(Integer|Float|Character|String|Boolean)\>"
  5.  
  6. ## Keywords
  7. icolor magenta "\<(abort|abs|accept|access|all|and|array|at)\>"
  8. icolor magenta "\<(begin|body)\>"
  9. icolor magenta "\<(case|constant)\>"
  10. icolor magenta "\<(declare|delay|delta|digits|do)\>"
  11. icolor magenta "\<(else|elsif|end|entry|exception|exit)\>"
  12. icolor magenta "\<(for|function)\>"
  13. icolor magenta "\<(generic|goto)\>"
  14. icolor magenta "\<(if|in|is)\>"
  15. icolor magenta "\<(limited|loop)\>"
  16. icolor magenta "\<(mod)\>"
  17. icolor magenta "\<(new|not|null)\>"
  18. icolor magenta "\<(of|or|others|out)\>"
  19. icolor magenta "\<(package|pragma|private|procedure)\>"
  20. icolor magenta "\<(raise|range|record|rem|renames|return|reverse)\>"
  21. icolor magenta "\<(select|separate|subtype)\>"
  22. icolor magenta "\<(task|terminate|then|type)\>"
  23. icolor magenta "\<(use)\>"
  24. icolor magenta "\<(when|while|with)\>"
  25. icolor magenta "\<(xor)\>"
  26.  
  27. ## Added Ada 95 keywords 6x
  28. icolor magenta "\<(abstract|aliased|protected|requeue|tagged|until)\>"
  29.  
  30. ## Added Ada 2005 keywords 3x
  31. icolor magenta "\<(interface|overriding|synchronized)\>"
  32.  
  33. ## Added Ada 2012 keywords 1x
  34. icolor magenta "\<(some)\>"
  35.  
  36. ## Strings
  37. icolor white ""(\\.|[^"])*""
  38.  
  39. ## Comments
  40. color cyan "--.*"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement