Exemple #1
0
        public void ImplicitCommentSkip()
        {
            var tp = new TestParser();

            tp.SetContext(";/*/hidden/*/first x/**/second");
            tp.IndexPlus(2);
            tp.ExpectName("first");
            tp.IndexPlus(2);
            tp.ExpectName("second");
        }