IronPython.Compiler.Ast.DictionaryExpression.IInstructionProvider C# (CSharp) Method

IInstructionProvider() private method

private IInstructionProvider ( Microsoft.Scripting.Interpreter.LightCompiler compiler ) : void
compiler Microsoft.Scripting.Interpreter.LightCompiler
return void
        void IInstructionProvider.AddInstructions(LightCompiler compiler) {
            if (_items.Length == 0) {
                compiler.Instructions.Emit(EmptyDictInstruction.Instance);
                return;
            }

            compiler.Compile(Reduce());
        }