Ejemplo n.º 1
0
 public void Reset(string name)
 {
     Locals.Clear();
     Staments.Clear();
     actual_content = new ContentCILMethod(name);
 }
Ejemplo n.º 2
0
 public ContextMethodCIL()
 {
     actual_content = new ContentCILMethod("class");
 }
Ejemplo n.º 3
0
 public void ClearContext()
 {
     actual_content = actual_content.father;
 }
Ejemplo n.º 4
0
 public ContentCILMethod(string name, ContentCILMethod father = null)
 {
     this.name = name; this.father = father; gen = new GenerateContinuosLabel(name);
 }
Ejemplo n.º 5
0
 public void AddContext(string name)
 {
     actual_content = actual_content.CreateChild(name);
 }