예제 #1
0
파일: ILocation.cs 프로젝트: nobikik9/kju
 public MemoryLocation(Function.Function function, int offset)
 {
     this.Function = function;
     this.Offset   = offset;
 }
예제 #2
0
파일: Nodes.cs 프로젝트: nobikik9/kju
 public PushStackLayoutPointer(Function.Function function)
 {
     this.Function = function;
 }
예제 #3
0
파일: ILocation.cs 프로젝트: nobikik9/kju
 public HeapLocation(Function.Function function, int offset, AST.DataType type)
 {
     this.Function = function;
     this.Offset   = offset;
     this.Type     = type;
 }
예제 #4
0
파일: Nodes.cs 프로젝트: nobikik9/kju
 public ReserveStackMemory(Function.Function function)
 {
     this.Function = function;
 }