aboutsummaryrefslogtreecommitdiff
path: root/node_modules/highlight.js/lib/languages/scala.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
commitcc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 (patch)
tree92c5d88706a6ffc654d1b133618d357890e7096b /node_modules/highlight.js/lib/languages/scala.js
parent3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff)
remove node_modules
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, 0 insertions, 114 deletions
diff --git a/node_modules/highlight.js/lib/languages/scala.js b/node_modules/highlight.js/lib/languages/scala.js
deleted file mode 100644
index 1a3f2d9d3..000000000
--- a/node_modules/highlight.js/lib/languages/scala.js
+++ /dev/null
@@ -1,114 +0,0 @@
-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