internal GlobalVariable(Model.WordCount offset, Types.Base type) : base(offset, type)
 {
 }
Exemple #2
0
 internal Parameter(Model.WordCount offset, Types.Base type) : base(offset, type)
 {
 }
 public static GlobalVariable Global(WordCount offset, Types.Base type) =>
 new GlobalVariable(offset, type.Proxy());
Exemple #4
0
 public static Parameter Parameter(WordCount offset, Types.Base type) => new(offset, type.Proxy());
Exemple #5
0
 public static LocalVariable Local(WordCount offset, Types.Base type) => new(offset, type.Proxy());
Exemple #6
0
 internal ReturnVariable(MethodSignature method, Types.Base type)
 {
     this.Type   = type;
     this.Method = method;
 }
Exemple #7
0
 public Field(Expression recordExpression, Types.Base fieldType, WordCount offset)
 {
     this.RecordExpression = recordExpression;
     this.FieldType        = fieldType;
     this.Offset           = offset;
 }
 internal OffsetVariable(Model.WordCount offset, Types.Base type)
 {
     this.Type = type;
     this.Offset = offset;
 }