Ejemplo n.º 1
0
 protected DebugTemplate(DebugTemplate prototype, bool shadowLocals, Template enclosingInstance)
     : base(prototype, shadowLocals, enclosingInstance)
 {
     if (shadowLocals)
     {
         newSTEvent    = prototype.newSTEvent;
         addAttrEvents = prototype.addAttrEvents;
     }
     else
     {
         newSTEvent    = new ConstructionEvent();
         addAttrEvents = new MultiMap <string, AddAttributeEvent>();
     }
 }
Ejemplo n.º 2
0
 protected DebugTemplate(DebugTemplate prototype, bool shadowLocals, Template enclosingInstance)
     : base(prototype, shadowLocals, enclosingInstance)
 {
     if (shadowLocals)
     {
         newSTEvent = prototype.newSTEvent;
         addAttrEvents = prototype.addAttrEvents;
     }
     else
     {
         newSTEvent = new ConstructionEvent();
         addAttrEvents = new MultiMap<string, AddAttributeEvent>();
     }
 }
Ejemplo n.º 3
0
 public DebugTemplate(Template prototype)
     : base(prototype)
 {
     newSTEvent    = new ConstructionEvent();
     addAttrEvents = new MultiMap <string, AddAttributeEvent>();
 }
Ejemplo n.º 4
0
 public DebugTemplate()
 {
     newSTEvent    = new ConstructionEvent();
     addAttrEvents = new MultiMap <string, AddAttributeEvent>();
 }
Ejemplo n.º 5
0
 public DebugTemplate(Template prototype)
     : base(prototype)
 {
     newSTEvent = new ConstructionEvent();
     addAttrEvents = new MultiMap<string, AddAttributeEvent>();
 }
Ejemplo n.º 6
0
 public DebugTemplate()
 {
     newSTEvent = new ConstructionEvent();
     addAttrEvents = new MultiMap<string, AddAttributeEvent>();
 }