Boo.Lang.Compiler.Steps.EmitAssembly.LoadArrayIndices C# (CSharp) Метод

LoadArrayIndices() приватный Метод

private LoadArrayIndices ( Boo.Lang.Compiler.Ast.SlicingExpression node ) : void
node Boo.Lang.Compiler.Ast.SlicingExpression
Результат void
        private void LoadArrayIndices(SlicingExpression node)
        {
            foreach (var index in node.Indices.Select(index => index.Begin))
                LoadIntExpression(index);
        }
EmitAssembly