public bool Visit(ConstCharLiteral node) { if (node.SymType != null) { return(true); } node.IsLValue = false; node.SymType = SymbolStack.SymChar; return(true); }
public AstPrinterNode Visit(ConstCharLiteral node) { var printer = new AstPrinterNode(node.ToString()); return(printer); }