public bool Visit(ConstStringLiteral node)
        {
            if (node.SymType != null)
            {
                return(true);
            }

            node.IsLValue = false;
            node.SymType  = SymbolStack.SymString;
            return(true);
        }
Example #2
0
        public AstPrinterNode Visit(ConstStringLiteral node)
        {
            var printer = new AstPrinterNode(node.ToString());

            return(printer);
        }