Boo.Lang.Compiler.Steps.EmitAssembly.OnConstructor C# (CSharp) 메소드

OnConstructor() 공개 메소드

public OnConstructor ( Constructor constructor ) : void
constructor Boo.Lang.Compiler.Ast.Constructor
리턴 void
        public override void OnConstructor(Constructor constructor)
        {
            if (constructor.IsRuntime) return;

            ConstructorBuilder builder = GetConstructorBuilder(constructor);
            EmitMethod(constructor, builder.GetILGenerator());
        }
EmitAssembly