示例#1
0
文件: Compiler.cs 项目: samiz/kitsune
 private void CompileVarAccessBlock(VarAccessBlock var, DataType type, List <Instruction> instructions, Dictionary <string, int> labels)
 {
     // todo: add type checking?
     instructions.Add(new PushLocal(vm, var.Name));
 }
示例#2
0
 private void CompileVarAccessBlock(VarAccessBlock var, DataType type, List<Instruction> instructions, Dictionary<string, int> labels)
 {
     // todo: add type checking?
     instructions.Add(new PushLocal(vm, var.Name));
 }