コード例 #1
0
 void IInstructionProvider.AddInstructions(LightCompiler compiler) {
     compiler.Compile(_codeContextExpr);
     compiler.AddInstruction(new LookupGlobalInstruction(_name, _isLocal));
 }
コード例 #2
0
 public void AddInstructions(LightCompiler compiler) {
     compiler.Compile(_value);
     compiler.AddInstruction(new PythonSetGlobalInstruction(_global.Global));
 }
コード例 #3
0
ファイル: FrameTracking.cs プロジェクト: andreakn/ironruby
 public void AddInstructions(LightCompiler compiler) {
     compiler.AddInstruction(_Instruction.Instance);
 }
コード例 #4
0
 public void AddInstructions(LightCompiler compiler) {
     compiler.AddInstruction(new PythonGlobalInstruction(_global));
 }
コード例 #5
0
 void IInstructionProvider.AddInstructions(LightCompiler compiler) {
     compiler.Compile(_scope);
     compiler.AddInstruction(new LookupGlobalInstruction(_name, _isLocal));
 }