Exemple #1
0
 public Class(Snippet parent, string signature)
     : base(parent, null)
 {
     // init
     this._Signature = signature;
 }
 public Namespace(Snippet parent, string name)
     : base(parent, null)
 {
     // init
     this._Name = name;
 }
Exemple #3
0
 public Switch(Snippet parent, string expression)
     : base(parent, null)
 {
     // init
     this._Expression = expression;
 }
Exemple #4
0
 public Scope(Snippet parent, Element context)
     : base(parent, context)
 {
 }
Exemple #5
0
 internal MethodInvoke(Snippet parent, Element context, string methodName)
     : base(parent, context)
 {
     // init
     this.Name = methodName;
 }
Exemple #6
0
 internal Array(Snippet parent, string elementType)
     : base(parent, null)
 {
     // init
     this._ElementType = elementType;
 }