public Class(IOpenBraceStatement OpenBraceStatementBase, ILine Line, ILiveStatement LiveStatementBase, System.Boolean Public = false, System.Collections.Generic.List<System.String> Implements = null, System.String Name = null)
 {
     this.OpenBraceStatementBase = OpenBraceStatementBase;
     this.Public = Public;
     this.Line = Line;
     this.LiveStatementBase = LiveStatementBase;
     this.Implements = Implements;
     this.Name = Name;
 }
 public VariableOBS(IOpenBraceStatement OpenBraceStatementBase, ILine Line, ILiveStatement LiveStatementBase, System.Collections.Generic.List<IParameter> Parameters = null)
 {
     this.OpenBraceStatementBase = OpenBraceStatementBase;
     this.Line = Line;
     this.LiveStatementBase = LiveStatementBase;
     this.Parameters = Parameters;
 }
 public StaticInterfaceMethod(IOpenBraceStatement OpenBraceStatementBase, ILine Line, ILiveStatement LiveStatementBase, System.String Name = null, System.Collections.Generic.List<ILiveStatement> Parameters = null, System.String ReturnType = null)
 {
     this.OpenBraceStatementBase = OpenBraceStatementBase;
     this.Line = Line;
     this.LiveStatementBase = LiveStatementBase;
     this.Name = Name;
     this.Parameters = Parameters;
     this.ReturnType = ReturnType;
 }
 public StaticFunction(IOpenBraceStatement OpenBraceStatementBase, ILine Line, ILiveStatement LiveStatementBase, System.Boolean Public = false, System.String Name = null, System.Collections.Generic.List<IParameter> Args = null, System.String ReturnType = null)
 {
     this.OpenBraceStatementBase = OpenBraceStatementBase;
     this.Line = Line;
     this.LiveStatementBase = LiveStatementBase;
     this.Public = Public;
     this.Name = Name;
     this.Args = Args;
     this.ReturnType = ReturnType;
 }
 public Module(IOpenBraceStatement OpenBraceStatementBase, ILine Line, ILiveStatement LiveStatementBase, System.String FullName = null)
 {
     this.OpenBraceStatementBase = OpenBraceStatementBase;
     this.Line = Line;
     this.LiveStatementBase = LiveStatementBase;
     this.FullName = FullName;
 }
 public Interface(IOpenBraceStatement OpenBraceStatementBase, ILine Line, ILiveStatement LiveStatementBase, System.String HelpText = null, System.Boolean Public = false, System.Collections.Generic.List<System.String> Extends = null, System.String Name = null, System.Collections.Generic.List<IField> Fields = null)
 {
     this.HelpText = HelpText;
     this.OpenBraceStatementBase = OpenBraceStatementBase;
     this.Public = Public;
     this.Line = Line;
     this.LiveStatementBase = LiveStatementBase;
     this.Extends = Extends;
     this.Name = Name;
     this.Fields = Fields;
 }