Update Reference Sources to .NET Framework 4.6.1
[mono.git] / mcs / class / referencesource / System.Data.SqlXml / System / Xml / Xsl / XsltOld / Action.cs
1 //------------------------------------------------------------------------------
2 // <copyright file="Action.cs" company="Microsoft">
3 //     Copyright (c) Microsoft Corporation.  All rights reserved.
4 // </copyright>                                                                
5 // <owner current="true" primary="true">[....]</owner>
6 //------------------------------------------------------------------------------
7
8 namespace System.Xml.Xsl.XsltOld {
9     using Res = System.Xml.Utils.Res;
10     using System;
11     using System.Xml;
12     using System.Xml.XPath;
13     using MS.Internal.Xml.XPath;
14     using System.Xml.Xsl.XsltOld.Debugger;
15
16     internal abstract class Action {
17         internal const int Initialized  =  0;
18         internal const int Finished     = -1;
19
20         internal abstract void Execute(Processor processor, ActionFrame frame);
21
22         internal virtual void ReplaceNamespaceAlias(Compiler compiler){}
23
24         // -------------- Debugger related stuff ---------
25         // We have to pass ActionFrame to GetNavigator and GetVariables
26         // because CopyCodeAction can't implement them without frame.count
27
28         internal virtual DbgData GetDbgData(ActionFrame frame) { return DbgData.Empty; }
29     }
30 }