micro/runtime/syntax/java.yaml

24 lines
751 B
YAML
Raw Normal View History

filetype: java
2017-03-21 21:55:22 +03:00
detect:
filename: "\\.java$"
rules:
- type: "\\b(boolean|byte|char|double|float|int|long|new|short|this|transient|void)\\b"
- statement: "\\b(break|case|catch|continue|default|do|else|finally|for|if|return|switch|throw|try|while)\\b"
2017-03-21 21:55:22 +03:00
- type.keyword: "\\b(abstract|class|extends|final|implements|import|instanceof|interface|native|package|private|protected|public|static|strictfp|super|synchronized|throws|volatile)\\b"
- constant.string: "\"[^\"]*\""
- constant.bool: "\\b(true|false|null)\\b"
- constant.number: "\\b[0-9]+\\b"
2017-03-21 21:55:22 +03:00
- comment: "//.*"
- comment:
2017-03-21 21:55:22 +03:00
start: "/\\*"
end: "\\*/"
rules: []
- comment:
2017-03-21 21:55:22 +03:00
start: "/\\*\\*"
end: "\\*/"
rules: []
2017-03-21 21:55:22 +03:00