123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- module.exports = function(hljs) {
- var KEYWORDS = {
- keyword:
- 'abstract as val var vararg get set class object open private protected public noinline ' +
- 'crossinline dynamic final enum if else do while for when throw try catch finally ' +
- 'import package is in fun override companion reified inline lateinit init ' +
- 'interface annotation data sealed internal infix operator out by constructor super ' +
- 'tailrec where const inner suspend typealias external expect actual ' +
- // to be deleted soon
- 'trait volatile transient native default',
- built_in:
- 'Byte Short Char Int Long Boolean Float Double Void Unit Nothing',
- literal:
- 'true false null'
- };
- var KEYWORDS_WITH_LABEL = {
- className: 'keyword',
- begin: /\b(break|continue|return|this)\b/,
- starts: {
- contains: [
- {
- className: 'symbol',
- begin: /@\w+/
- }
- ]
- }
- };
- var LABEL = {
- className: 'symbol', begin: hljs.UNDERSCORE_IDENT_RE + '@'
- };
- // for string templates
- var SUBST = {
- className: 'subst',
- begin: '\\${', end: '}', contains: [hljs.C_NUMBER_MODE]
- };
- var VARIABLE = {
- className: 'variable', begin: '\\$' + hljs.UNDERSCORE_IDENT_RE
- };
- var STRING = {
- className: 'string',
- variants: [
- {
- begin: '"""', end: '"""(?=[^"])',
- contains: [VARIABLE, SUBST]
- },
- // Can't use built-in modes easily, as we want to use STRING in the meta
- // context as 'meta-string' and there's no syntax to remove explicitly set
- // classNames in built-in modes.
- {
- begin: '\'', end: '\'',
- illegal: /\n/,
- contains: [hljs.BACKSLASH_ESCAPE]
- },
- {
- begin: '"', end: '"',
- illegal: /\n/,
- contains: [hljs.BACKSLASH_ESCAPE, VARIABLE, SUBST]
- }
- ]
- };
- SUBST.contains.push(STRING)
- var ANNOTATION_USE_SITE = {
- className: 'meta', begin: '@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\s*:(?:\\s*' + hljs.UNDERSCORE_IDENT_RE + ')?'
- };
- var ANNOTATION = {
- className: 'meta', begin: '@' + hljs.UNDERSCORE_IDENT_RE,
- contains: [
- {
- begin: /\(/, end: /\)/,
- contains: [
- hljs.inherit(STRING, {className: 'meta-string'})
- ]
- }
- ]
- };
- // https://kotlinlang.org/docs/reference/whatsnew11.html#underscores-in-numeric-literals
- // According to the doc above, the number mode of kotlin is the same as java 8,
- // so the code below is copied from java.js
- var KOTLIN_NUMBER_RE = '\\b' +
- '(' +
- '0[bB]([01]+[01_]+[01]+|[01]+)' + // 0b...
- '|' +
- '0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)' + // 0x...
- '|' +
- '(' +
- '([\\d]+[\\d_]+[\\d]+|[\\d]+)(\\.([\\d]+[\\d_]+[\\d]+|[\\d]+))?' +
- '|' +
- '\\.([\\d]+[\\d_]+[\\d]+|[\\d]+)' +
- ')' +
- '([eE][-+]?\\d+)?' + // octal, decimal, float
- ')' +
- '[lLfF]?';
- var KOTLIN_NUMBER_MODE = {
- className: 'number',
- begin: KOTLIN_NUMBER_RE,
- relevance: 0
- };
- var KOTLIN_NESTED_COMMENT = hljs.COMMENT(
- '/\\*', '\\*/',
- { contains: [ hljs.C_BLOCK_COMMENT_MODE ] }
- );
- var KOTLIN_PAREN_TYPE = {
- variants: [
- { className: 'type',
- begin: hljs.UNDERSCORE_IDENT_RE
- },
- { begin: /\(/, end: /\)/,
- contains: [] //defined later
- }
- ]
- };
- var KOTLIN_PAREN_TYPE2 = KOTLIN_PAREN_TYPE;
- KOTLIN_PAREN_TYPE2.variants[1].contains = [ KOTLIN_PAREN_TYPE ];
- KOTLIN_PAREN_TYPE.variants[1].contains = [ KOTLIN_PAREN_TYPE2 ];
- return {
- aliases: ['kt'],
- keywords: KEYWORDS,
- contains : [
- hljs.COMMENT(
- '/\\*\\*',
- '\\*/',
- {
- relevance : 0,
- contains : [{
- className : 'doctag',
- begin : '@[A-Za-z]+'
- }]
- }
- ),
- hljs.C_LINE_COMMENT_MODE,
- KOTLIN_NESTED_COMMENT,
- KEYWORDS_WITH_LABEL,
- LABEL,
- ANNOTATION_USE_SITE,
- ANNOTATION,
- {
- className: 'function',
- beginKeywords: 'fun', end: '[(]|$',
- returnBegin: true,
- excludeEnd: true,
- keywords: KEYWORDS,
- illegal: /fun\s+(<.*>)?[^\s\(]+(\s+[^\s\(]+)\s*=/,
- relevance: 5,
- contains: [
- {
- begin: hljs.UNDERSCORE_IDENT_RE + '\\s*\\(', returnBegin: true,
- relevance: 0,
- contains: [hljs.UNDERSCORE_TITLE_MODE]
- },
- {
- className: 'type',
- begin: /</, end: />/, keywords: 'reified',
- relevance: 0
- },
- {
- className: 'params',
- begin: /\(/, end: /\)/,
- endsParent: true,
- keywords: KEYWORDS,
- relevance: 0,
- contains: [
- {
- begin: /:/, end: /[=,\/]/, endsWithParent: true,
- contains: [
- KOTLIN_PAREN_TYPE,
- hljs.C_LINE_COMMENT_MODE,
- KOTLIN_NESTED_COMMENT
- ],
- relevance: 0
- },
- hljs.C_LINE_COMMENT_MODE,
- KOTLIN_NESTED_COMMENT,
- ANNOTATION_USE_SITE,
- ANNOTATION,
- STRING,
- hljs.C_NUMBER_MODE
- ]
- },
- KOTLIN_NESTED_COMMENT
- ]
- },
- {
- className: 'class',
- beginKeywords: 'class interface trait', end: /[:\{(]|$/, // remove 'trait' when removed from KEYWORDS
- excludeEnd: true,
- illegal: 'extends implements',
- contains: [
- {beginKeywords: 'public protected internal private constructor'},
- hljs.UNDERSCORE_TITLE_MODE,
- {
- className: 'type',
- begin: /</, end: />/, excludeBegin: true, excludeEnd: true,
- relevance: 0
- },
- {
- className: 'type',
- begin: /[,:]\s*/, end: /[<\(,]|$/, excludeBegin: true, returnEnd: true
- },
- ANNOTATION_USE_SITE,
- ANNOTATION
- ]
- },
- STRING,
- {
- className: 'meta',
- begin: "^#!/usr/bin/env", end: '$',
- illegal: '\n'
- },
- KOTLIN_NUMBER_MODE
- ]
- };
- };
|