Removed stray DDUMPs

git-svn-id: svn://ultimatepp.org/upp/trunk@5346 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2012-09-10 18:38:23 +00:00
parent ca29ffccc0
commit 0a0f36b975
3 changed files with 0 additions and 6 deletions

View file

@ -91,9 +91,7 @@ One<Exe> Compiler::Prim()
id << p.ReadId();
while(p.Char(':'))
id << ':' << p.ReadId();
DDUMP(id);
int n = var.Find(id);
DDUMP(n);
if(p.Char('(')) {
Value (*f)(const Vector<Value>&, const Renderer *) = functions().Get(id, NULL);
if(!f) {

View file

@ -97,7 +97,6 @@ String MakeLink0(int q, const Vector<Value>& arg)
String MakeLink(const HandlerId& id, const Vector<Value>& arg)
{
DDUMP(id.id);
return MakeLink0(id.handler ? sHandlerIndex().Find((uintptr_t)id.handler) : sLinkMap().Find(id.id), arg);
}

View file

@ -16,10 +16,7 @@ Renderer& Renderer::operator()(const ValueMap& map)
Renderer& Renderer::Link(const char *id, const HandlerId& handler, const Vector<Value>& arg)
{
DDUMP(MakeLink(handler, arg));
DDUMP(id);
var.Add(id, Raw('\"' + MakeLink(handler, arg) + '\"'));
DDUMPM(var);
return *this;
}