123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- function source(re) {
- if (!re) return null;
- if (typeof re === "string") return re;
- return re.source;
- }
- function concat(...args) {
- const joined = args.map((x) => source(x)).join("");
- return joined;
- }
- function either(...args) {
- const joined = '(' + args.map((x) => source(x)).join("|") + ")";
- return joined;
- }
- function vbnet(hljs) {
-
- const CHARACTER = {
- className: 'string',
- begin: /"(""|[^/n])"C\b/
- };
- const STRING = {
- className: 'string',
- begin: /"/,
- end: /"/,
- illegal: /\n/,
- contains: [
- {
-
- begin: /""/
- }
- ]
- };
-
- const MM_DD_YYYY = /\d{1,2}\/\d{1,2}\/\d{4}/;
- const YYYY_MM_DD = /\d{4}-\d{1,2}-\d{1,2}/;
- const TIME_12H = /(\d|1[012])(:\d+){0,2} *(AM|PM)/;
- const TIME_24H = /\d{1,2}(:\d{1,2}){1,2}/;
- const DATE = {
- className: 'literal',
- variants: [
- {
-
- begin: concat(/# */, either(YYYY_MM_DD, MM_DD_YYYY), / *#/)
- },
- {
-
- begin: concat(/# */, TIME_24H, / *#/)
- },
- {
-
- begin: concat(/# */, TIME_12H, / *#/)
- },
- {
-
- begin: concat(
- /# */,
- either(YYYY_MM_DD, MM_DD_YYYY),
- / +/,
- either(TIME_12H, TIME_24H),
- / *#/
- )
- }
- ]
- };
- const NUMBER = {
- className: 'number',
- relevance: 0,
- variants: [
- {
-
- begin: /\b\d[\d_]*((\.[\d_]+(E[+-]?[\d_]+)?)|(E[+-]?[\d_]+))[RFD@!#]?/
- },
- {
-
- begin: /\b\d[\d_]*((U?[SIL])|[%&])?/
- },
- {
-
- begin: /&H[\dA-F_]+((U?[SIL])|[%&])?/
- },
- {
-
- begin: /&O[0-7_]+((U?[SIL])|[%&])?/
- },
- {
-
- begin: /&B[01_]+((U?[SIL])|[%&])?/
- }
- ]
- };
- const LABEL = {
- className: 'label',
- begin: /^\w+:/
- };
- const DOC_COMMENT = hljs.COMMENT(/'''/, /$/, {
- contains: [
- {
- className: 'doctag',
- begin: /<\/?/,
- end: />/
- }
- ]
- });
- const COMMENT = hljs.COMMENT(null, /$/, {
- variants: [
- {
- begin: /'/
- },
- {
-
- begin: /([\t ]|^)REM(?=\s)/
- }
- ]
- });
- const DIRECTIVES = {
- className: 'meta',
-
- begin: /[\t ]*#(const|disable|else|elseif|enable|end|externalsource|if|region)\b/,
- end: /$/,
- keywords: {
- 'meta-keyword':
- 'const disable else elseif enable end externalsource if region then'
- },
- contains: [ COMMENT ]
- };
- return {
- name: 'Visual Basic .NET',
- aliases: [ 'vb' ],
- case_insensitive: true,
- classNameAliases: {
- label: 'symbol'
- },
- keywords: {
- keyword:
- 'addhandler alias aggregate ansi as async assembly auto binary by byref byval ' +
- 'call case catch class compare const continue custom declare default delegate dim distinct do ' +
- 'each equals else elseif end enum erase error event exit explicit finally for friend from function ' +
- 'get global goto group handles if implements imports in inherits interface into iterator ' +
- 'join key let lib loop me mid module mustinherit mustoverride mybase myclass ' +
- 'namespace narrowing new next notinheritable notoverridable ' +
- 'of off on operator option optional order overloads overridable overrides ' +
- 'paramarray partial preserve private property protected public ' +
- 'raiseevent readonly redim removehandler resume return ' +
- 'select set shadows shared skip static step stop structure strict sub synclock ' +
- 'take text then throw to try unicode until using when where while widening with withevents writeonly yield' ,
- built_in:
-
- 'addressof and andalso await directcast gettype getxmlnamespace is isfalse isnot istrue like mod nameof new not or orelse trycast typeof xor ' +
-
- 'cbool cbyte cchar cdate cdbl cdec cint clng cobj csbyte cshort csng cstr cuint culng cushort',
- type:
-
- 'boolean byte char date decimal double integer long object sbyte short single string uinteger ulong ushort',
- literal: 'true false nothing'
- },
- illegal:
- '//|\\{|\\}|endif|gosub|variant|wend|^\\$ ' ,
- contains: [
- CHARACTER,
- STRING,
- DATE,
- NUMBER,
- LABEL,
- DOC_COMMENT,
- COMMENT,
- DIRECTIVES
- ]
- };
- }
- module.exports = vbnet;
|