summaryrefslogblamecommitdiff
path: root/src/msil/ch/epfl/lamp/compiler/msil/emit/ICustomAttributeSetter.scala
blob: 88587a143d8daece83207e66aa0dec56d8686519 (plain) (tree)
1
2
3
4
5



                                                                      
       











                                                                  
                                                                       
 
/*
 * System.Reflection.Emit-like API for writing .NET assemblies to MSIL
 */

// $Id$

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])
}