aboutsummaryrefslogtreecommitdiff
path: root/node_modules/highlight.js/lib/languages/ceylon.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/ceylon.js
parent3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff)
remove node_modules
Diffstat (limited to 'node_modules/highlight.js/lib/languages/ceylon.js')
-rw-r--r--node_modules/highlight.js/lib/languages/ceylon.js66
1 files changed, 0 insertions, 66 deletions
diff --git a/node_modules/highlight.js/lib/languages/ceylon.js b/node_modules/highlight.js/lib/languages/ceylon.js
deleted file mode 100644
index eb59f16d8..000000000
--- a/node_modules/highlight.js/lib/languages/ceylon.js
+++ /dev/null
@@ -1,66 +0,0 @@
-module.exports = function(hljs) {
- // 2.3. Identifiers and keywords
- var KEYWORDS =
- 'assembly module package import alias class interface object given value ' +
- 'assign void function new of extends satisfies abstracts in out return ' +
- 'break continue throw assert dynamic if else switch case for while try ' +
- 'catch finally then let this outer super is exists nonempty';
- // 7.4.1 Declaration Modifiers
- var DECLARATION_MODIFIERS =
- 'shared abstract formal default actual variable late native deprecated' +
- 'final sealed annotation suppressWarnings small';
- // 7.4.2 Documentation
- var DOCUMENTATION =
- 'doc by license see throws tagged';
- var SUBST = {
- className: 'subst', excludeBegin: true, excludeEnd: true,
- begin: /``/, end: /``/,
- keywords: KEYWORDS,
- relevance: 10
- };
- var EXPRESSIONS = [
- {
- // verbatim string
- className: 'string',
- begin: '"""',
- end: '"""',
- relevance: 10
- },
- {
- // string literal or template
- className: 'string',
- begin: '"', end: '"',
- contains: [SUBST]
- },
- {
- // character literal
- className: 'string',
- begin: "'",
- end: "'"
- },
- {
- // numeric literal
- className: 'number',
- begin: '#[0-9a-fA-F_]+|\\$[01_]+|[0-9_]+(?:\\.[0-9_](?:[eE][+-]?\\d+)?)?[kMGTPmunpf]?',
- relevance: 0
- }
- ];
- SUBST.contains = EXPRESSIONS;
-
- return {
- keywords: {
- keyword: KEYWORDS + ' ' + DECLARATION_MODIFIERS,
- meta: DOCUMENTATION
- },
- illegal: '\\$[^01]|#[^0-9a-fA-F]',
- contains: [
- hljs.C_LINE_COMMENT_MODE,
- hljs.COMMENT('/\\*', '\\*/', {contains: ['self']}),
- {
- // compiler annotation
- className: 'meta',
- begin: '@[a-z]\\w*(?:\\:\"[^\"]*\")?'
- }
- ].concat(EXPRESSIONS)
- };
-}; \ No newline at end of file