C# Class Jurassic.Compiler.DynamicILLabel

Represents a label in IL code.
Inheritance: ILLabel
Show file Open project: paulbartrum/jurassic Class Usage Examples

Public Methods

Method Description
DynamicILLabel ( DynamicILGenerator generator, int identifier ) : System

Creates a new label instance.

Method Details

DynamicILLabel() public method

Creates a new label instance.
public DynamicILLabel ( DynamicILGenerator generator, int identifier ) : System
generator DynamicILGenerator The generator that created this label.
identifier int The label identifier (must be unique within a method).
return System