aboutsummaryrefslogtreecommitdiff
path: root/node_modules/highlight.js/lib/languages/scala.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-05-24 15:10:37 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-05-24 15:11:17 +0200
commit7a3df06eb573d36142bd1a8e03c5ce8752d300b3 (patch)
tree70bfaea8884c374876f607774850a3a51c0cb381 /node_modules/highlight.js/lib/languages/scala.js
parentaca1143cb9eed16cf37f04e475e4257418dd18ac (diff)
fix build issues and add typedoc
Diffstat (limited to 'node_modules/highlight.js/lib/languages/scala.js')
-rw-r--r--node_modules/highlight.js/lib/languages/scala.js114
1 files changed, 114 insertions, 0 deletions
diff --git a/node_modules/highlight.js/lib/languages/scala.js b/node_modules/highlight.js/lib/languages/scala.js
new file mode 100644
index 000000000..1a3f2d9d3
--- /dev/null
+++ b/node_modules/highlight.js/lib/languages/scala.js
@@ -0,0 +1,114 @@
+module.exports = function(hljs) {
+
+ var ANNOTATION = { className: 'meta', begin: '@[A-Za-z]+' };
+
+ // used in strings for escaping/interpolation/substitution
+ var SUBST = {
+ className: 'subst',
+ variants: [
+ {begin: '\\$[A-Za-z0-9_]+'},
+ {begin: '\\${', end: '}'}
+ ]
+ };
+
+ var STRING = {
+ className: 'string',
+ variants: [
+ {
+ begin: '"', end: '"',
+ illegal: '\\n',
+ contains: [hljs.BACKSLASH_ESCAPE]
+ },
+ {
+ begin: '"""', end: '"""',
+ relevance: 10
+ },
+ {
+ begin: '[a-z]+"', end: '"',
+ illegal: '\\n',
+ contains: [hljs.BACKSLASH_ESCAPE, SUBST]
+ },
+ {
+ className: 'string',
+ begin: '[a-z]+"""', end: '"""',
+ contains: [SUBST],
+ relevance: 10
+ }
+ ]
+
+ };
+
+ var SYMBOL = {
+ className: 'symbol',
+ begin: '\'\\w[\\w\\d_]*(?!\')'
+ };
+
+ var TYPE = {
+ className: 'type',
+ begin: '\\b[A-Z][A-Za-z0-9_]*',
+ relevance: 0
+ };
+
+ var NAME = {
+ className: 'title',
+ begin: /[^0-9\n\t "'(),.`{}\[\]:;][^\n\t "'(),.`{}\[\]:;]+|[^0-9\n\t "'(),.`{}\[\]:;=]/,
+ relevance: 0
+ };
+
+ var CLASS = {
+ className: 'class',
+ beginKeywords: 'class object trait type',
+ end: /[:={\[\n;]/,
+ excludeEnd: true,
+ contains: [
+ {
+ beginKeywords: 'extends with',
+ relevance: 10
+ },
+ {
+ begin: /\[/,
+ end: /\]/,
+ excludeBegin: true,
+ excludeEnd: true,
+ relevance: 0,
+ contains: [TYPE]
+ },
+ {
+ className: 'params',
+ begin: /\(/,
+ end: /\)/,
+ excludeBegin: true,
+ excludeEnd: true,
+ relevance: 0,
+ contains: [TYPE]
+ },
+ NAME
+ ]
+ };
+
+ var METHOD = {
+ className: 'function',
+ beginKeywords: 'def',
+ end: /[:={\[(\n;]/,
+ excludeEnd: true,
+ contains: [NAME]
+ };
+
+ return {
+ keywords: {
+ literal: 'true false null',
+ keyword: 'type yield lazy override def with val var sealed abstract private trait object if forSome for while throw finally protected extends import final return else break new catch super class case package default try this match continue throws implicit'
+ },
+ contains: [
+ hljs.C_LINE_COMMENT_MODE,
+ hljs.C_BLOCK_COMMENT_MODE,
+ STRING,
+ SYMBOL,
+ TYPE,
+ METHOD,
+ CLASS,
+ hljs.C_NUMBER_MODE,
+ ANNOTATION
+ ]
+ };
+}; \ No newline at end of file