GlobalAsaxCompiler.cs 767 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // System.Web.Compilation.GlobalAsaxCompiler
  3. //
  4. // Authors:
  5. // Gonzalo Paniagua Javier ([email protected])
  6. //
  7. // (C) 2002,2003 Ximian, Inc (http://www.ximian.com)
  8. //
  9. using System;
  10. using System.Web.UI;
  11. namespace System.Web.Compilation
  12. {
  13. class GlobalAsaxCompiler : BaseCompiler
  14. {
  15. ApplicationFileParser parser;
  16. public GlobalAsaxCompiler (ApplicationFileParser parser)
  17. : base (parser)
  18. {
  19. this.parser = parser;
  20. }
  21. public static Type CompileApplicationType (ApplicationFileParser parser)
  22. {
  23. GlobalAsaxCompiler compiler = new GlobalAsaxCompiler (parser);
  24. return compiler.GetCompiledType ();
  25. }
  26. [MonoTODO("Process application scope for object tags")]
  27. protected override void ProcessObjectTag (ObjectTagBuilder tag)
  28. {
  29. //TODO
  30. }
  31. }
  32. }