| 12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // System.Web.Compilation.GlobalAsaxCompiler
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) 2002,2003 Ximian, Inc (http://www.ximian.com)
- //
- using System;
- using System.Web.UI;
- namespace System.Web.Compilation
- {
- class GlobalAsaxCompiler : BaseCompiler
- {
- ApplicationFileParser parser;
- public GlobalAsaxCompiler (ApplicationFileParser parser)
- : base (parser)
- {
- this.parser = parser;
- }
- public static Type CompileApplicationType (ApplicationFileParser parser)
- {
- GlobalAsaxCompiler compiler = new GlobalAsaxCompiler (parser);
- return compiler.GetCompiledType ();
- }
- [MonoTODO("Process application scope for object tags")]
- protected override void ProcessObjectTag (ObjectTagBuilder tag)
- {
- //TODO
- }
- }
- }
|