Jurassic.Compiler.DynamicILGenerator.CreateLabel C# (CSharp) 메소드

CreateLabel() 공개 메소드

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