namespace Jint.Parser.Ast
{
    public class ContinueStatement : Statement
    {
        public Identifier Label;
    }
}