(function (Prism) { /** * Replaces all placeholders "<>" of given pattern with the n-th replacement (zero based). * * Note: This is a simple text based replacement. Be careful when using backreferences! * * @param {string} pattern the given pattern. * @param {string[]} replacements a list of replacement which can be inserted into the given pattern. * @returns {string} the pattern with all placeholders replaced with their corresponding replacements. * @example replace(/a<<0>>a/.source, [/b+/.source]) === /a(?:b+)a/.source */ function replace(pattern, replacements) { return pattern.replace(/<<(\d+)>>/g, function (m, index) { return '(?:' + replacements[+index] + ')'; }); } /** * @param {string} pattern * @param {string[]} replacements * @param {string} [flags] * @returns {RegExp} */ function re(pattern, replacements, flags) { return RegExp(replace(pattern, replacements), flags || ''); } /** * Creates a nested pattern where all occurrences of the string `<>` are replaced with the pattern itself. * * @param {string} pattern * @param {number} depthLog2 * @returns {string} */ function nested(pattern, depthLog2) { for (var i = 0; i < depthLog2; i++) { pattern = pattern.replace(/<>/g, function () { return '(?:' + pattern + ')'; }); } return pattern.replace(/<>/g, '[^\\s\\S]'); } // https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/ var keywordKinds = { // keywords which represent a return or variable type type: 'bool byte char decimal double dynamic float int long object sbyte short string uint ulong ushort var void', // keywords which are used to declare a type typeDeclaration: 'class enum interface record struct', // contextual keywords // ("var" and "dynamic" are missing because they are used like types) contextual: 'add alias and ascending async await by descending from(?=\\s*(?:\\w|$)) get global group into init(?=\\s*;) join let nameof not notnull on or orderby partial remove select set unmanaged value when where with(?=\\s*{)', // all other keywords other: 'abstract as base break case catch checked const continue default delegate do else event explicit extern finally fixed for foreach goto if implicit in internal is lock namespace new null operator out override params private protected public readonly ref return sealed sizeof stackalloc static switch this throw try typeof unchecked unsafe using virtual volatile while yield' }; // keywords function keywordsToPattern(words) { return '\\b(?:' + words.trim().replace(/ /g, '|') + ')\\b'; } var typeDeclarationKeywords = keywordsToPattern(keywordKinds.typeDeclaration); var keywords = RegExp(keywordsToPattern(keywordKinds.type + ' ' + keywordKinds.typeDeclaration + ' ' + keywordKinds.contextual + ' ' + keywordKinds.other)); var nonTypeKeywords = keywordsToPattern(keywordKinds.typeDeclaration + ' ' + keywordKinds.contextual + ' ' + keywordKinds.other); var nonContextualKeywords = keywordsToPattern(keywordKinds.type + ' ' + keywordKinds.typeDeclaration + ' ' + keywordKinds.other); // types var generic = nested(/<(?:[^<>;=+\-*/%&|^]|<>)*>/.source, 2); // the idea behind the other forbidden characters is to prevent false positives. Same for tupleElement. var nestedRound = nested(/\((?:[^()]|<>)*\)/.source, 2); var name = /@?\b[A-Za-z_]\w*\b/.source; var genericName = replace(/<<0>>(?:\s*<<1>>)?/.source, [name, generic]); var identifier = replace(/(?!<<0>>)<<1>>(?:\s*\.\s*<<1>>)*/.source, [nonTypeKeywords, genericName]); var array = /\[\s*(?:,\s*)*\]/.source; var typeExpressionWithoutTuple = replace(/<<0>>(?:\s*(?:\?\s*)?<<1>>)*(?:\s*\?)?/.source, [identifier, array]); var tupleElement = replace(/[^,()<>[\];=+\-*/%&|^]|<<0>>|<<1>>|<<2>>/.source, [generic, nestedRound, array]); var tuple = replace(/\(<<0>>+(?:,<<0>>+)+\)/.source, [tupleElement]); var typeExpression = replace(/(?:<<0>>|<<1>>)(?:\s*(?:\?\s*)?<<2>>)*(?:\s*\?)?/.source, [tuple, identifier, array]); var typeInside = { 'keyword': keywords, 'punctuation': /[<>()?,.:[\]]/ }; // strings & characters // https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/language-specification/lexical-structure#character-literals // https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/language-specification/lexical-structure#string-literals var character = /'(?:[^\r\n'\\]|\\.|\\[Uux][\da-fA-F]{1,8})'/.source; // simplified pattern var regularString = /"(?:\\.|[^\\"\r\n])*"/.source; var verbatimString = /@"(?:""|\\[\s\S]|[^\\"])*"(?!")/.source; Prism.languages.csharp = Prism.languages.extend('clike', { 'string': [ { pattern: re(/(^|[^$\\])<<0>>/.source, [verbatimString]), lookbehind: true, greedy: true }, { pattern: re(/(^|[^@$\\])<<0>>/.source, [regularString]), lookbehind: true, greedy: true } ], 'class-name': [ { // Using static // using static System.Math; pattern: re(/(\busing\s+static\s+)<<0>>(?=\s*;)/.source, [identifier]), lookbehind: true, inside: typeInside }, { // Using alias (type) // using Project = PC.MyCompany.Project; pattern: re(/(\busing\s+<<0>>\s*=\s*)<<1>>(?=\s*;)/.source, [name, typeExpression]), lookbehind: true, inside: typeInside }, { // Using alias (alias) // using Project = PC.MyCompany.Project; pattern: re(/(\busing\s+)<<0>>(?=\s*=)/.source, [name]), lookbehind: true }, { // Type declarations // class Foo // interface Foo pattern: re(/(\b<<0>>\s+)<<1>>/.source, [typeDeclarationKeywords, genericName]), lookbehind: true, inside: typeInside }, { // Single catch exception declaration // catch(Foo) // (things like catch(Foo e) is covered by variable declaration) pattern: re(/(\bcatch\s*\(\s*)<<0>>/.source, [identifier]), lookbehind: true, inside: typeInside }, { // Name of the type parameter of generic constraints // where Foo : class pattern: re(/(\bwhere\s+)<<0>>/.source, [name]), lookbehind: true }, { // Casts and checks via as and is. // as Foo, is Bar // (things like if(a is Foo b) is covered by variable declaration) pattern: re(/(\b(?:is(?:\s+not)?|as)\s+)<<0>>/.source, [typeExpressionWithoutTuple]), lookbehind: true, inside: typeInside }, { // Variable, field and parameter declaration // (Foo bar, Bar baz, Foo[,,] bay, Foo> bax) pattern: re(/\b<<0>>(?=\s+(?!<<1>>|with\s*\{)<<2>>(?:\s*[=,;:{)\]]|\s+(?:in|when)\b))/.source, [typeExpression, nonContextualKeywords, name]), inside: typeInside } ], 'keyword': keywords, // https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/language-specification/lexical-structure#literals 'number': /(?:\b0(?:x[\da-f_]*[\da-f]|b[01_]*[01])|(?:\B\.\d+(?:_+\d+)*|\b\d+(?:_+\d+)*(?:\.\d+(?:_+\d+)*)?)(?:e[-+]?\d+(?:_+\d+)*)?)(?:[dflmu]|lu|ul)?\b/i, 'operator': />>=?|<<=?|[-=]>|([-+&|])\1|~|\?\?=?|[-+*/%&|^!=<>]=?/, 'punctuation': /\?\.?|::|[{}[\];(),.:]/ }); Prism.languages.insertBefore('csharp', 'number', { 'range': { pattern: /\.\./, alias: 'operator' } }); Prism.languages.insertBefore('csharp', 'punctuation', { 'named-parameter': { pattern: re(/([(,]\s*)<<0>>(?=\s*:)/.source, [name]), lookbehind: true, alias: 'punctuation' } }); Prism.languages.insertBefore('csharp', 'class-name', { 'namespace': { // namespace Foo.Bar {} // using Foo.Bar; pattern: re(/(\b(?:namespace|using)\s+)<<0>>(?:\s*\.\s*<<0>>)*(?=\s*[;{])/.source, [name]), lookbehind: true, inside: { 'punctuation': /\./ } }, 'type-expression': { // default(Foo), typeof(Foo), sizeof(int) pattern: re(/(\b(?:default|sizeof|typeof)\s*\(\s*(?!\s))(?:[^()\s]|\s(?!\s)|<<0>>)*(?=\s*\))/.source, [nestedRound]), lookbehind: true, alias: 'class-name', inside: typeInside }, 'return-type': { // Foo ForBar(); Foo IFoo.Bar() => 0 // int this[int index] => 0; T IReadOnlyList.this[int index] => this[index]; // int Foo => 0; int Foo { get; set } = 0; pattern: re(/<<0>>(?=\s+(?:<<1>>\s*(?:=>|[({]|\.\s*this\s*\[)|this\s*\[))/.source, [typeExpression, identifier]), inside: typeInside, alias: 'class-name' }, 'constructor-invocation': { // new List> { } pattern: re(/(\bnew\s+)<<0>>(?=\s*[[({])/.source, [typeExpression]), lookbehind: true, inside: typeInside, alias: 'class-name' }, /*'explicit-implementation': { // int IFoo.Bar => 0; void IFoo>.Foo(); pattern: replace(/\b<<0>>(?=\.<<1>>)/, className, methodOrPropertyDeclaration), inside: classNameInside, alias: 'class-name' },*/ 'generic-method': { // foo() pattern: re(/<<0>>\s*<<1>>(?=\s*\()/.source, [name, generic]), inside: { 'function': re(/^<<0>>/.source, [name]), 'generic': { pattern: RegExp(generic), alias: 'class-name', inside: typeInside } } }, 'type-list': { // The list of types inherited or of generic constraints // class Foo : Bar, IList // where F : Bar, IList pattern: re( /\b((?:<<0>>\s+<<1>>|record\s+<<1>>\s*<<5>>|where\s+<<2>>)\s*:\s*)(?:<<3>>|<<4>>|<<1>>\s*<<5>>|<<6>>)(?:\s*,\s*(?:<<3>>|<<4>>|<<6>>))*(?=\s*(?:where|[{;]|=>|$))/.source, [typeDeclarationKeywords, genericName, name, typeExpression, keywords.source, nestedRound, /\bnew\s*\(\s*\)/.source] ), lookbehind: true, inside: { 'record-arguments': { pattern: re(/(^(?!new\s*\()<<0>>\s*)<<1>>/.source, [genericName, nestedRound]), lookbehind: true, greedy: true, inside: Prism.languages.csharp }, 'keyword': keywords, 'class-name': { pattern: RegExp(typeExpression), greedy: true, inside: typeInside }, 'punctuation': /[,()]/ } }, 'preprocessor': { pattern: /(^[\t ]*)#.*/m, lookbehind: true, alias: 'property', inside: { // highlight preprocessor directives as keywords 'directive': { pattern: /(#)\b(?:define|elif|else|endif|endregion|error|if|line|nullable|pragma|region|undef|warning)\b/, lookbehind: true, alias: 'keyword' } } } }); // attributes var regularStringOrCharacter = regularString + '|' + character; var regularStringCharacterOrComment = replace(/\/(?![*/])|\/\/[^\r\n]*[\r\n]|\/\*(?:[^*]|\*(?!\/))*\*\/|<<0>>/.source, [regularStringOrCharacter]); var roundExpression = nested(replace(/[^"'/()]|<<0>>|\(<>*\)/.source, [regularStringCharacterOrComment]), 2); // https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/concepts/attributes/#attribute-targets var attrTarget = /\b(?:assembly|event|field|method|module|param|property|return|type)\b/.source; var attr = replace(/<<0>>(?:\s*\(<<1>>*\))?/.source, [identifier, roundExpression]); Prism.languages.insertBefore('csharp', 'class-name', { 'attribute': { // Attributes // [Foo], [Foo(1), Bar(2, Prop = "foo")], [return: Foo(1), Bar(2)], [assembly: Foo(Bar)] pattern: re(/((?:^|[^\s\w>)?])\s*\[\s*)(?:<<0>>\s*:\s*)?<<1>>(?:\s*,\s*<<1>>)*(?=\s*\])/.source, [attrTarget, attr]), lookbehind: true, greedy: true, inside: { 'target': { pattern: re(/^<<0>>(?=\s*:)/.source, [attrTarget]), alias: 'keyword' }, 'attribute-arguments': { pattern: re(/\(<<0>>*\)/.source, [roundExpression]), inside: Prism.languages.csharp }, 'class-name': { pattern: RegExp(identifier), inside: { 'punctuation': /\./ } }, 'punctuation': /[:,]/ } } }); // string interpolation var formatString = /:[^}\r\n]+/.source; // multi line var mInterpolationRound = nested(replace(/[^"'/()]|<<0>>|\(<>*\)/.source, [regularStringCharacterOrComment]), 2); var mInterpolation = replace(/\{(?!\{)(?:(?![}:])<<0>>)*<<1>>?\}/.source, [mInterpolationRound, formatString]); // single line var sInterpolationRound = nested(replace(/[^"'/()]|\/(?!\*)|\/\*(?:[^*]|\*(?!\/))*\*\/|<<0>>|\(<>*\)/.source, [regularStringOrCharacter]), 2); var sInterpolation = replace(/\{(?!\{)(?:(?![}:])<<0>>)*<<1>>?\}/.source, [sInterpolationRound, formatString]); function createInterpolationInside(interpolation, interpolationRound) { return { 'interpolation': { pattern: re(/((?:^|[^{])(?:\{\{)*)<<0>>/.source, [interpolation]), lookbehind: true, inside: { 'format-string': { pattern: re(/(^\{(?:(?![}:])<<0>>)*)<<1>>(?=\}$)/.source, [interpolationRound, formatString]), lookbehind: true, inside: { 'punctuation': /^:/ } }, 'punctuation': /^\{|\}$/, 'expression': { pattern: /[\s\S]+/, alias: 'language-csharp', inside: Prism.languages.csharp } } }, 'string': /[\s\S]+/ }; } Prism.languages.insertBefore('csharp', 'string', { 'interpolation-string': [ { pattern: re(/(^|[^\\])(?:\$@|@\$)"(?:""|\\[\s\S]|\{\{|<<0>>|[^\\{"])*"/.source, [mInterpolation]), lookbehind: true, greedy: true, inside: createInterpolationInside(mInterpolation, mInterpolationRound), }, { pattern: re(/(^|[^@\\])\$"(?:\\.|\{\{|<<0>>|[^\\"{])*"/.source, [sInterpolation]), lookbehind: true, greedy: true, inside: createInterpolationInside(sInterpolation, sInterpolationRound), } ], 'char': { pattern: RegExp(character), greedy: true } }); Prism.languages.dotnet = Prism.languages.cs = Prism.languages.csharp; }(Prism));