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

vbnet.js.map « highlight « js - github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 772891e4fb794895226c33f785a0c14261890c2a (plain)
1
{"version":3,"sources":["webpack:///./node_modules/highlight.js/lib/languages/vbnet.js"],"names":["module","exports","hljs","name","aliases","case_insensitive","keywords","keyword","built_in","literal","illegal","contains","inherit","QUOTE_STRING_MODE","begin","COMMENT","returnBegin","className","PHRASAL_WORDS_MODE","end","C_NUMBER_MODE"],"mappings":"oGA0EAA,EAAOC,QAnEP,SAAeC,GACb,MAAO,CACLC,KAAM,oBACNC,QAAS,CAAE,MACXC,kBAAkB,EAClBC,SAAU,CACRC,QACE,47BAWFC,SACE,iPAGFC,QACE,sBAEJC,QAAS,4CACTC,SAAU,CACRT,EAAKU,QAAQV,EAAKW,kBAAmB,CACnCF,SAAU,CACR,CACEG,MAAO,SAIbZ,EAAKa,QACH,IACA,IACA,CACEC,aAAa,EACbL,SAAU,CACR,CACEM,UAAW,SACXH,MAAO,qBACPH,SAAU,CAAET,EAAKgB,qBAEnB,CACED,UAAW,SACXH,MAAO,MACPK,IAAK,IACLR,SAAU,CAAET,EAAKgB,wBAKzBhB,EAAKkB,cACL,CACEH,UAAW,OACXH,MAAO,IACPK,IAAK,IACLb,SAAU,CACR,eAAgB","file":"highlight/vbnet.js?v=21462a9b2acea97d31c8","sourcesContent":["/*\nLanguage: Visual Basic .NET\nDescription: Visual Basic .NET (VB.NET) is a multi-paradigm, object-oriented programming language, implemented on the .NET Framework.\nAuthor: Poren Chiang <ren.chiang@gmail.com>\nWebsite: https://docs.microsoft.com/en-us/dotnet/visual-basic/getting-started/\n*/\n\nfunction vbnet(hljs) {\n  return {\n    name: 'Visual Basic .NET',\n    aliases: [ 'vb' ],\n    case_insensitive: true,\n    keywords: {\n      keyword:\n        'addhandler addressof alias and andalso aggregate ansi as async assembly auto await binary by byref byval ' + /* a-b */\n        'call case catch class compare const continue custom declare default delegate dim distinct do ' + /* c-d */\n        'each equals else elseif end enum erase error event exit explicit finally for friend from function ' + /* e-f */\n        'get global goto group handles if implements imports in inherits interface into is isfalse isnot istrue iterator ' + /* g-i */\n        'join key let lib like loop me mid mod module mustinherit mustoverride mybase myclass ' + /* j-m */\n        'nameof namespace narrowing new next not notinheritable notoverridable ' + /* n */\n        'of off on operator option optional or order orelse overloads overridable overrides ' + /* o */\n        'paramarray partial preserve private property protected public ' + /* p */\n        'raiseevent readonly redim rem removehandler resume return ' + /* r */\n        'select set shadows shared skip static step stop structure strict sub synclock ' + /* s */\n        'take text then throw to try unicode until using when where while widening with withevents writeonly xor yield', /* t-y */\n      built_in:\n        'boolean byte cbool cbyte cchar cdate cdec cdbl char cint clng cobj csbyte cshort csng cstr ctype ' + /* b-c */\n        'date decimal directcast double gettype getxmlnamespace iif integer long object ' + /* d-o */\n        'sbyte short single string trycast typeof uinteger ulong ushort', /* s-u */\n      literal:\n        'true false nothing'\n    },\n    illegal: '//|\\\\{|\\\\}|endif|gosub|variant|wend|^\\\\$ ', /* reserved deprecated keywords */\n    contains: [\n      hljs.inherit(hljs.QUOTE_STRING_MODE, {\n        contains: [\n          {\n            begin: '\"\"'\n          }\n        ]\n      }),\n      hljs.COMMENT(\n        '\\'',\n        '$',\n        {\n          returnBegin: true,\n          contains: [\n            {\n              className: 'doctag',\n              begin: '\\'\\'\\'|<!--|-->',\n              contains: [ hljs.PHRASAL_WORDS_MODE ]\n            },\n            {\n              className: 'doctag',\n              begin: '</?',\n              end: '>',\n              contains: [ hljs.PHRASAL_WORDS_MODE ]\n            }\n          ]\n        }\n      ),\n      hljs.C_NUMBER_MODE,\n      {\n        className: 'meta',\n        begin: '#',\n        end: '$',\n        keywords: {\n          'meta-keyword': 'if else elseif end region externalsource'\n        }\n      }\n    ]\n  };\n}\n\nmodule.exports = vbnet;\n"],"sourceRoot":""}