1/**
2 * SyntaxHighlighter
3 * http://alexgorbatchev.com/SyntaxHighlighter
4 *
5 * SyntaxHighlighter is donationware. If you are using it, please donate.
6 * http://alexgorbatchev.com/SyntaxHighlighter/donate.html
7 *
8 * @version
9 * 3.0.90 (Sat, 18 Jun 2016 21:01:41 GMT)
10 *
11 * @copyright
12 * Copyright (C) 2004-2013 Alex Gorbatchev.
13 *
14 * @license
15 * Dual licensed under the MIT and GPL licenses.
16 */
17;(function()
18{
19	// CommonJS
20	SyntaxHighlighter = SyntaxHighlighter || (typeof require !== 'undefined'? require('shCore').SyntaxHighlighter : null);
21
22	function Brush()
23	{
24		var keywords =	'break case catch class continue ' +
25				'default delete do else enum export extends false  ' +
26				'for function if implements import in instanceof ' +
27				'interface let new null package private protected ' +
28				'static return super switch ' +
29				'this throw true try typeof var while with yield';
30
31		var r = SyntaxHighlighter.regexLib;
32
33		this.regexList = [
34			{ regex: r.multiLineDoubleQuotedString,					css: 'string' },			// double quoted strings
35			{ regex: r.multiLineSingleQuotedString,					css: 'string' },			// single quoted strings
36			{ regex: r.singleLineCComments,							css: 'comments' },			// one line comments
37			{ regex: r.multiLineCComments,							css: 'comments' },			// multiline comments
38			{ regex: /\s*#.*/gm,									css: 'preprocessor' },		// preprocessor tags like #region and #endregion
39			{ regex: new RegExp(this.getKeywords(keywords), 'gm'),	css: 'keyword' }			// keywords
40			];
41
42		this.forHtmlScript(r.scriptScriptTags);
43	};
44
45	Brush.prototype	= new SyntaxHighlighter.Highlighter();
46	Brush.aliases	= ['js', 'jscript', 'javascript', 'json'];
47
48	SyntaxHighlighter.brushes.JScript = Brush;
49
50	// CommonJS
51	typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
52})();
53