123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366 |
- (function (Prism) {
-
- function replace(pattern, replacements) {
- return pattern.replace(/<<(\d+)>>/g, function (m, index) {
- return '(?:' + replacements[+index] + ')';
- });
- }
-
- function re(pattern, replacements, flags) {
- return RegExp(replace(pattern, replacements), flags || '');
- }
-
- function nested(pattern, depthLog2) {
- for (var i = 0; i < depthLog2; i++) {
- pattern = pattern.replace(/<<self>>/g, function () { return '(?:' + pattern + ')'; });
- }
- return pattern.replace(/<<self>>/g, '[^\\s\\S]');
- }
-
- var keywordKinds = {
-
- type: 'bool byte char decimal double dynamic float int long object sbyte short string uint ulong ushort var void',
-
- typeDeclaration: 'class enum interface record struct',
-
-
- 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*{)',
-
- 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'
- };
-
- 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);
-
- var generic = nested(/<(?:[^<>;=+\-*/%&|^]|<<self>>)*>/.source, 2);
- var nestedRound = nested(/\((?:[^()]|<<self>>)*\)/.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': /[<>()?,.:[\]]/
- };
-
-
-
- var character = /'(?:[^\r\n'\\]|\\.|\\[Uux][\da-fA-F]{1,8})'/.source;
- 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': [
- {
-
-
- pattern: re(/(\busing\s+static\s+)<<0>>(?=\s*;)/.source, [identifier]),
- lookbehind: true,
- inside: typeInside
- },
- {
-
-
- pattern: re(/(\busing\s+<<0>>\s*=\s*)<<1>>(?=\s*;)/.source, [name, typeExpression]),
- lookbehind: true,
- inside: typeInside
- },
- {
-
-
- pattern: re(/(\busing\s+)<<0>>(?=\s*=)/.source, [name]),
- lookbehind: true
- },
- {
-
-
-
- pattern: re(/(\b<<0>>\s+)<<1>>/.source, [typeDeclarationKeywords, genericName]),
- lookbehind: true,
- inside: typeInside
- },
- {
-
-
-
- pattern: re(/(\bcatch\s*\(\s*)<<0>>/.source, [identifier]),
- lookbehind: true,
- inside: typeInside
- },
- {
-
-
- pattern: re(/(\bwhere\s+)<<0>>/.source, [name]),
- lookbehind: true
- },
- {
-
-
-
- pattern: re(/(\b(?:is(?:\s+not)?|as)\s+)<<0>>/.source, [typeExpressionWithoutTuple]),
- lookbehind: true,
- inside: typeInside
- },
- {
-
-
- pattern: re(/\b<<0>>(?=\s+(?!<<1>>|with\s*\{)<<2>>(?:\s*[=,;:{)\]]|\s+(?:in|when)\b))/.source, [typeExpression, nonContextualKeywords, name]),
- inside: typeInside
- }
- ],
- 'keyword': keywords,
-
- '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': {
-
-
- pattern: re(/(\b(?:namespace|using)\s+)<<0>>(?:\s*\.\s*<<0>>)*(?=\s*[;{])/.source, [name]),
- lookbehind: true,
- inside: {
- 'punctuation': /\./
- }
- },
- 'type-expression': {
-
- 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': {
-
-
-
- pattern: re(/<<0>>(?=\s+(?:<<1>>\s*(?:=>|[({]|\.\s*this\s*\[)|this\s*\[))/.source, [typeExpression, identifier]),
- inside: typeInside,
- alias: 'class-name'
- },
- 'constructor-invocation': {
-
- pattern: re(/(\bnew\s+)<<0>>(?=\s*[[({])/.source, [typeExpression]),
- lookbehind: true,
- inside: typeInside,
- alias: 'class-name'
- },
-
- 'generic-method': {
-
- 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': {
-
-
-
- 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: {
-
- 'directive': {
- pattern: /(#)\b(?:define|elif|else|endif|endregion|error|if|line|nullable|pragma|region|undef|warning)\b/,
- lookbehind: true,
- alias: 'keyword'
- }
- }
- }
- });
-
- var regularStringOrCharacter = regularString + '|' + character;
- var regularStringCharacterOrComment = replace(/\/(?![*/])|\/\/[^\r\n]*[\r\n]|\/\*(?:[^*]|\*(?!\/))*\*\/|<<0>>/.source, [regularStringOrCharacter]);
- var roundExpression = nested(replace(/[^"'/()]|<<0>>|\(<<self>>*\)/.source, [regularStringCharacterOrComment]), 2);
-
- 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': {
-
-
- 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': /[:,]/
- }
- }
- });
-
- var formatString = /:[^}\r\n]+/.source;
-
- var mInterpolationRound = nested(replace(/[^"'/()]|<<0>>|\(<<self>>*\)/.source, [regularStringCharacterOrComment]), 2);
- var mInterpolation = replace(/\{(?!\{)(?:(?![}:])<<0>>)*<<1>>?\}/.source, [mInterpolationRound, formatString]);
-
- var sInterpolationRound = nested(replace(/[^"'/()]|\/(?!\*)|\/\*(?:[^*]|\*(?!\/))*\*\/|<<0>>|\(<<self>>*\)/.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));
|