Ejemplo n.º 1
0
        public static string Minify(TextSource js)
        {
            var min = new JSMin();

            return(min.Minify(js));
        }
Ejemplo n.º 2
0
 public BaseTokenizerNoPosition(TextSource source)
 {
     StringBuffer = Pool.NewStringBuilder();
     _source      = source;
     _currentChar = Symbols.Null;
 }
Ejemplo n.º 3
0
 public ParseState(TextSource source, TextileParseSettings settings)
 {
     _source   = source;
     _settings = settings;
 }