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: 46c5fe2f31ce6e1f7fe41c5ffb87039ac5baaed9 (plain)
1
{"version":3,"sources":["webpack:///./node_modules/highlight.js/lib/languages/clean.js"],"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"],"mappings":"mGAuCAA,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","file":"highlight/clean.js?v=49cf101da1cda927d487","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"],"sourceRoot":""}