Ejemplo n.º 1
0
            // SxS: This method does not take any resource name and does not expose any resources to the caller.
            // It's OK to suppress the SxS warning.
            internal override void Compile(Compiler compiler)
            {
                _dbgData = new DbgData(compiler);
                base.Compile(compiler);

                Debug.Assert(compiler.Debugger != null);
                string builtIn = compiler.Debugger.GetBuiltInTemplatesUri();

                if (builtIn != null && builtIn.Length != 0)
                {
                    compiler.AllowBuiltInMode = true;
                    builtInSheet = compiler.RootAction.CompileImport(compiler, compiler.ResolveUri(builtIn), int.MaxValue);
                    compiler.AllowBuiltInMode = false;
                }

                _dbgData.ReplaceVariables(((DbgCompiler)compiler).GlobalVariables);
            }
Ejemplo n.º 2
0
 public TextEventDbg(Compiler compiler) : base(compiler)
 {
     _dbgData = new DbgData(compiler);
 }
Ejemplo n.º 3
0
 public BeginEventDbg(Compiler compiler) : base(compiler)
 {
     _dbgData = new DbgData(compiler);
 }
Ejemplo n.º 4
0
 internal override void Compile(Compiler compiler)
 {
     _dbgData = new DbgData(compiler);
     base.Compile(compiler);
     ((DbgCompiler)compiler).DefineVariable(this);
 }
Ejemplo n.º 5
0
 internal override void Compile(Compiler compiler)
 {
     dbgData = new DbgData(compiler);
     base.Compile(compiler);
 }
Ejemplo n.º 6
0
 public TextEventDbg(Compiler compiler) : base(compiler) {
     dbgData = new DbgData(compiler);
 }
Ejemplo n.º 7
0
 public BeginEventDbg(Compiler compiler) : base(compiler) {
     dbgData = new DbgData(compiler);
 }
Ejemplo n.º 8
0
 internal override void Compile(Compiler compiler) {
     dbgData = new DbgData(compiler);
     base.Compile(compiler);
 }
Ejemplo n.º 9
0
 internal override void Compile(Compiler compiler) {
     dbgData = new DbgData(compiler);
     base.Compile(compiler);
     ((DbgCompiler) compiler).DefineVariable(this);
 }
Ejemplo n.º 10
0
            internal override void Compile(Compiler compiler) {
                dbgData = new DbgData(compiler);
                base.Compile(compiler);

                Debug.Assert(compiler.Debugger != null);
                string builtIn = compiler.Debugger.GetBuiltInTemplatesUri();
                if (builtIn != null && builtIn.Length != 0) {
                    compiler.AllowBuiltInMode = true;
                    builtInSheet = compiler.RootAction.CompileImport(compiler, compiler.ResolveUri(builtIn), int.MaxValue);
                    compiler.AllowBuiltInMode = false;
                }

                dbgData.ReplaceVariables(((DbgCompiler) compiler).GlobalVariables) ;
            }