public void Reset(string name) { Locals.Clear(); Staments.Clear(); actual_content = new ContentCILMethod(name); }
public ContextMethodCIL() { actual_content = new ContentCILMethod("class"); }
public void ClearContext() { actual_content = actual_content.father; }
public ContentCILMethod(string name, ContentCILMethod father = null) { this.name = name; this.father = father; gen = new GenerateContinuosLabel(name); }
public void AddContext(string name) { actual_content = actual_content.CreateChild(name); }