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

protobuf.js.map « highlight « js - github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 543f3fea0c9e2f387fc55f8ea41c2f8a1e7c7f49 (plain)
1
{"version":3,"sources":["webpack:///./node_modules/highlight.js/lib/languages/protobuf.js"],"names":["module","exports","hljs","keywords","keyword","built_in","literal","contains","QUOTE_STRING_MODE","NUMBER_MODE","C_LINE_COMMENT_MODE","className","beginKeywords","end","illegal","inherit","TITLE_MODE","starts","endsWithParent","excludeEnd","begin"],"mappings":"qFAAAA,EAAOC,QAAU,SAASC,GACxB,MAAO,CACLC,SAAU,CACRC,QAAS,+DACTC,SAAU,2GAEVC,QAAS,cAEXC,SAAU,CACRL,EAAKM,kBACLN,EAAKO,YACLP,EAAKQ,oBACL,CACEC,UAAW,QACXC,cAAe,uBAAwBC,IAAK,KAC5CC,QAAS,KACTP,SAAU,CACRL,EAAKa,QAAQb,EAAKc,WAAY,CAC5BC,OAAQ,CAACC,gBAAgB,EAAMC,YAAY,OAIjD,CACER,UAAW,WACXC,cAAe,MACfC,IAAK,IAAKM,YAAY,EACtBhB,SAAU,eAEZ,CACEiB,MAAO,cACPP,IAAK,OAAQM,YAAY","file":"highlight/protobuf.js?v=9d3cbe3e763fef5c6562","sourcesContent":["module.exports = function(hljs) {\n  return {\n    keywords: {\n      keyword: 'package import option optional required repeated group oneof',\n      built_in: 'double float int32 int64 uint32 uint64 sint32 sint64 ' +\n        'fixed32 fixed64 sfixed32 sfixed64 bool string bytes',\n      literal: 'true false'\n    },\n    contains: [\n      hljs.QUOTE_STRING_MODE,\n      hljs.NUMBER_MODE,\n      hljs.C_LINE_COMMENT_MODE,\n      {\n        className: 'class',\n        beginKeywords: 'message enum service', end: /\\{/,\n        illegal: /\\n/,\n        contains: [\n          hljs.inherit(hljs.TITLE_MODE, {\n            starts: {endsWithParent: true, excludeEnd: true} // hack: eating everything after the first title\n          })\n        ]\n      },\n      {\n        className: 'function',\n        beginKeywords: 'rpc',\n        end: /;/, excludeEnd: true,\n        keywords: 'rpc returns'\n      },\n      {\n        begin: /^\\s*[A-Z_]+/,\n        end: /\\s*=/, excludeEnd: true\n      }\n    ]\n  };\n};"],"sourceRoot":""}