/*
 * ActionScript Compressor
*/

dp.sh.Brushes.ActionScript=function()
{var keywords='as abstract boolean break case catch class const continue '+'default delete do dynamic each else extends false final finally '+'for function get if implements import in include instanceof int interface internal is namespace native '+'new null override package private protected public return set static super switch '+'this throw to trace true try typeof use var void while with';this.regexList=[{regex:dp.sh.RegexLib.SingleLineCComments,css:'comment'},{regex:dp.sh.RegexLib.MultiLineCComments,css:'comment'},{regex:dp.sh.RegexLib.DoubleQuotedString,css:'string'},{regex:dp.sh.RegexLib.SingleQuotedString,css:'string'},{regex:new RegExp('^\\s*#.*','gm'),css:'preprocessor'},{regex:new RegExp(this.GetKeywords(keywords),'gm'),css:'keyword'}];this.CssClass='dp-c';}
dp.sh.Brushes.ActionScript.prototype=new dp.sh.Highlighter();dp.sh.Brushes.ActionScript.Aliases=['as','actionscript'];
