blob: 36caa9cbcb954132e0ba75d5a6912405e619e41f [file] [log] [blame]
{% from "macros.tmpl" import license -%}
{{ license() }}
#include "config.h"
#include "{{namespace}}ElementLookupTrie.h"
#include "{{namespace}}Names.h"
namespace WebCore {
using namespace {{namespace}}Names;
StringImpl* lookup{{namespace}}Tag(const UChar* data, unsigned length)
{
ASSERT(data);
ASSERT(length);
switch (length) {
{{body}}
}
return 0;
}
} // WebCore