public void ContinueStatementProducesContinueWithLabel()
        {
            var c = new ContinueStatement("here");

            Assert.AreEqual("here", c.Label);
            Assert.AreEqual("continue here;", c.ToString());
        }
        public void ContinueStatementProducesContinueWithLabel()
        {
            var c = new ContinueStatement("here");

            Assert.AreEqual("here", c.Label);
            Assert.AreEqual("continue here;", c.ToString());
        }
        public void ContinueStatementProducesContinueWithoutLabel()
        {
            var c = new ContinueStatement();

            Assert.AreEqual("continue;", c.ToString());
        }
        public void ContinueStatementProducesContinueWithoutLabel()
        {
            var c = new ContinueStatement();

            Assert.AreEqual("continue;", c.ToString());
        }