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

OnLocal() публичный Метод

public OnLocal ( Local local ) : void
local Local
Результат void
        public override void OnLocal(Local local)
        {
            InternalLocal info = GetInternalLocal(local);
            info.LocalBuilder = _il.DeclareLocal(GetSystemType(local), info.Type.IsPointer);
            if (Parameters.Debug)
            {
                info.LocalBuilder.SetLocalSymInfo(local.Name);
            }
        }
EmitAssembly