You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
601 B
26 lines
601 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Apewer
|
|
{
|
|
|
|
/// <summary>跳转语句。</summary>
|
|
public enum JumpStatement : int
|
|
{
|
|
|
|
/// <summary>终止最接近的迭代。</summary>
|
|
Break = 0,
|
|
|
|
/// <summary>启动最接近的迭代。</summary>
|
|
Continue = 1,
|
|
|
|
// /// <summary>终止所在函数的执行,并将控制权和函数结果(若有)返回给调用方。</summary>
|
|
// Return = 2,
|
|
|
|
// /// <summary>将控制权转交给带有标签的语句。</summary>
|
|
// Goto = 3,
|
|
|
|
}
|
|
|
|
}
|
|
|