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

profile.js.map « highlight « js - github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1f4866e48846604f90e045528797b8c26ac9dc4c (plain)
1
{"version":3,"sources":["webpack:///./node_modules/highlight.js/lib/languages/profile.js"],"names":["module","exports","hljs","name","contains","C_NUMBER_MODE","begin","end","excludeEnd","keywords","relevance","APOS_STRING_MODE","QUOTE_STRING_MODE","className","excludeBegin"],"mappings":"oGA0CAA,EAAOC,QApCP,SAAiBC,GACf,MAAO,CACLC,KAAM,kBACNC,SAAU,CACRF,EAAKG,cACL,CACEC,MAAO,6CACPC,IAAK,IACLC,YAAY,GAEd,CACEF,MAAO,2BACPC,IAAK,IACLE,SAAU,wCACVC,UAAW,IAEb,CACEJ,MAAO,iBACPC,IAAK,IACLH,SAAU,CAAEF,EAAKG,eACjBK,UAAW,IAEbR,EAAKS,iBACLT,EAAKU,kBACL,CACEC,UAAW,SACXP,MAAO,MACPC,IAAK,OACLO,cAAc,EACdN,YAAY,EACZE,UAAW","file":"highlight/profile.js?v=5d2bc74f04e90461272c","sourcesContent":["/*\nLanguage: Python profiler\nDescription: Python profiler results\nAuthor: Brian Beck <exogen@gmail.com>\n*/\n\nfunction profile(hljs) {\n  return {\n    name: 'Python profiler',\n    contains: [\n      hljs.C_NUMBER_MODE,\n      {\n        begin: '[a-zA-Z_][\\\\da-zA-Z_]+\\\\.[\\\\da-zA-Z_]{1,3}',\n        end: ':',\n        excludeEnd: true\n      },\n      {\n        begin: '(ncalls|tottime|cumtime)',\n        end: '$',\n        keywords: 'ncalls tottime|10 cumtime|10 filename',\n        relevance: 10\n      },\n      {\n        begin: 'function calls',\n        end: '$',\n        contains: [ hljs.C_NUMBER_MODE ],\n        relevance: 10\n      },\n      hljs.APOS_STRING_MODE,\n      hljs.QUOTE_STRING_MODE,\n      {\n        className: 'string',\n        begin: '\\\\(',\n        end: '\\\\)$',\n        excludeBegin: true,\n        excludeEnd: true,\n        relevance: 0\n      }\n    ]\n  };\n}\n\nmodule.exports = profile;\n"],"sourceRoot":""}