Пример #1
0
        public override Value VisitStringAtom(AbstractIfStmtParser.StringAtomContext context)
        {
            string str = context.GetText();

            str = str.Substring(1, str.Length - 1).Replace("\"\"", "\"");
            return(new Value(str));
        }