Welcome to mirror list, hosted at ThFree Co, Russian Federation.

clean.js.map « highlight « js - github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 36e828ce6cc0a9f5738c3e950d6513dac776eb39 (plain)
1
{"version":3,"file":"highlight/clean.js?v=b4627bc3738c93c277be","mappings":"uFAuCAA,EAAOC,QA/BP,SAAeC,GACb,MAAO,CACLC,KAAM,QACNC,QAAS,CACP,MACA,OAEFC,SAAU,CACRC,QACE,6MAIFC,SACE,qBACFC,QACE,cAEJC,SAAU,CACRP,EAAKQ,oBACLR,EAAKS,qBACLT,EAAKU,iBACLV,EAAKW,kBACLX,EAAKY,cACL,CACEC,MAAO","sources":["webpack:///text/node_modules/highlight.js/lib/languages/clean.js"],"sourcesContent":["/*\nLanguage: Clean\nAuthor: Camil Staps <info@camilstaps.nl>\nCategory: functional\nWebsite: http://clean.cs.ru.nl\n*/\n\n/** @type LanguageFn */\nfunction clean(hljs) {\n  return {\n    name: 'Clean',\n    aliases: [\n      'icl',\n      'dcl'\n    ],\n    keywords: {\n      keyword:\n        'if let in with where case of class instance otherwise ' +\n        'implementation definition system module from import qualified as ' +\n        'special code inline foreign export ccall stdcall generic derive ' +\n        'infix infixl infixr',\n      built_in:\n        'Int Real Char Bool',\n      literal:\n        'True False'\n    },\n    contains: [\n      hljs.C_LINE_COMMENT_MODE,\n      hljs.C_BLOCK_COMMENT_MODE,\n      hljs.APOS_STRING_MODE,\n      hljs.QUOTE_STRING_MODE,\n      hljs.C_NUMBER_MODE,\n      { // relevance booster\n        begin: '->|<-[|:]?|#!?|>>=|\\\\{\\\\||\\\\|\\\\}|:==|=:|<>'\n      }\n    ]\n  };\n}\n\nmodule.exports = clean;\n"],"names":["module","exports","hljs","name","aliases","keywords","keyword","built_in","literal","contains","C_LINE_COMMENT_MODE","C_BLOCK_COMMENT_MODE","APOS_STRING_MODE","QUOTE_STRING_MODE","C_NUMBER_MODE","begin"],"sourceRoot":""}