Jurassic.Compiler.DynamicILGenerator.CreateLabel C# (CSharp) Method

CreateLabel() public method

Creates a label without setting its position.
public CreateLabel ( ) : ILLabel
return ILLabel
        public override ILLabel CreateLabel()
        {
            var result = new DynamicILLabel(this, this.labels.Count);
            this.labels.Add(result);
            return result;
        }
DynamicILGenerator