コード例 #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
ファイル: Compiler.cs プロジェクト: andyhebear/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));
 }