summaryrefslogtreecommitdiff
path: root/src/msil/ch/epfl/lamp/compiler/msil/emit/ICustomAttributeSetter.scala
blob: 5d74d3aa954c160ced1114f2e6e3c6047c484aca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * 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

/**
 * Declares the possibility to set a custom attribute for a member
 *
 * @author Nikolay Mihaylov
 * @version 1.0
 */
trait ICustomAttributeSetter {
    def SetCustomAttribute(constr: ConstructorInfo, value: Array[Byte])
}