/* Jasic syntax contributed by Bob Nystrom */
dp.sh.Brushes.Jasic = function()
{
  var keywords =	'goto if input print then';

	this.regexList = [
		{ regex: new RegExp('\'.*$', 'gm'),			css: 'comment' },	// one line comments
		{ regex: dp.sh.RegexLib.DoubleQuotedString,				css: 'string' },	// double quoted strings
		{ regex: new RegExp(this.GetKeywords(keywords), 'gm'),	css: 'keyword' },	// keywords
		{ regex: new RegExp('[0-9]+', 'g'),	css: 'literal' }, // int literals
		];
}

dp.sh.Brushes.Jasic.prototype = new dp.sh.Highlighter();
dp.sh.Brushes.Jasic.Aliases = ['jasic', 'jas'];
