aboutsummaryrefslogtreecommitdiff
path: root/node_modules/highlight.js/lib/languages/monkey.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/monkey.js
parent3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff)
remove node_modules
Diffstat (limited to 'node_modules/highlight.js/lib/languages/monkey.js')
-rw-r--r--node_modules/highlight.js/lib/languages/monkey.js74
1 files changed, 0 insertions, 74 deletions
diff --git a/node_modules/highlight.js/lib/languages/monkey.js b/node_modules/highlight.js/lib/languages/monkey.js
deleted file mode 100644
index 5e9b9624d..000000000
--- a/node_modules/highlight.js/lib/languages/monkey.js
+++ /dev/null
@@ -1,74 +0,0 @@
-module.exports = function(hljs) {
- var NUMBER = {
- className: 'number', relevance: 0,
- variants: [
- {
- begin: '[$][a-fA-F0-9]+'
- },
- hljs.NUMBER_MODE
- ]
- };
-
- return {
- case_insensitive: true,
- keywords: {
- keyword: 'public private property continue exit extern new try catch ' +
- 'eachin not abstract final select case default const local global field ' +
- 'end if then else elseif endif while wend repeat until forever for ' +
- 'to step next return module inline throw import',
-
- built_in: 'DebugLog DebugStop Error Print ACos ACosr ASin ASinr ATan ATan2 ATan2r ATanr Abs Abs Ceil ' +
- 'Clamp Clamp Cos Cosr Exp Floor Log Max Max Min Min Pow Sgn Sgn Sin Sinr Sqrt Tan Tanr Seed PI HALFPI TWOPI',
-
- literal: 'true false null and or shl shr mod'
- },
- illegal: /\/\*/,
- contains: [
- hljs.COMMENT('#rem', '#end'),
- hljs.COMMENT(
- "'",
- '$',
- {
- relevance: 0
- }
- ),
- {
- className: 'function',
- beginKeywords: 'function method', end: '[(=:]|$',
- illegal: /\n/,
- contains: [
- hljs.UNDERSCORE_TITLE_MODE
- ]
- },
- {
- className: 'class',
- beginKeywords: 'class interface', end: '$',
- contains: [
- {
- beginKeywords: 'extends implements'
- },
- hljs.UNDERSCORE_TITLE_MODE
- ]
- },
- {
- className: 'built_in',
- begin: '\\b(self|super)\\b'
- },
- {
- className: 'meta',
- begin: '\\s*#', end: '$',
- keywords: {'meta-keyword': 'if else elseif endif end then'}
- },
- {
- className: 'meta',
- begin: '^\\s*strict\\b'
- },
- {
- beginKeywords: 'alias', end: '=',
- contains: [hljs.UNDERSCORE_TITLE_MODE]
- },
- hljs.QUOTE_STRING_MODE,
- NUMBER
- ]
- }
-}; \ No newline at end of file