summaryrefslogtreecommitdiff
path: root/src/msil/ch/epfl/lamp/compiler/msil/emit/ConstructorBuilder.scala
blob: ddd4708ecd8f52806fa20109014c677e6f6e9777 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
 * System.Reflection.Emit-like API for writing .NET assemblies to MSIL
 */


package ch.epfl.lamp.compiler.msil.emit

import ch.epfl.lamp.compiler.msil.ConstructorInfo
import ch.epfl.lamp.compiler.msil.Type
import java.io.IOException

/**
 * Defines and represents a constructor of a dynamic class.
 * ConstructorBuilder is used to fully describe a constructor in
 * Microsoft intermediate language (MSIL), including the name, attributes,
 * signature, and constructor body. It is used in conjunction with the
 * TypeBuilder class to create classes at run time. Call DefineConstructor
 * to get an instance of ConstructorBuilder.
 *
 * @author Nikolay Mihaylov
 * @version 1.0
 */
class ConstructorBuilder(declType: Type, attrs: Int, paramTypes: Array[Type])
      extends ConstructorInfo(declType, attrs, paramTypes)
      with ICustomAttributeSetter
      with Visitable
{

    //##########################################################################
    // public interface

    /** Defines a parameter of this constructor. */
    def DefineParameter(pos: Int, attr: Int, name: String): ParameterBuilder = {
	val param = new ParameterBuilder(name, params(pos).ParameterType, attr, pos)
	params(pos) = param
	return param
    }

    /** Returns an ILGenerator for this constructor. */
    def GetILGenerator(): ILGenerator = {
	return ilGenerator
    }

    /** Sets a custom attribute. */
    def SetCustomAttribute(constr: ConstructorInfo, value: Array[Byte]) {
	addCustomAttribute(constr, value)
    }

    //##########################################################################

    /** The apply method for a visitor. */
    @throws(classOf[IOException])
    def apply(v: Visitor) {
	v.caseConstructorBuilder(this)
    }

    //##########################################################################

    // the Intermediate Language Generator
    // it contains the method's body
    protected var ilGenerator: ILGenerator = new ILGenerator(this)

    //##########################################################################
}