summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/datamodel/ecmascript/v8/dom/V8DocumentFragment.cpp
blob: fa655ae7474f6db8cdf27022509b5b848e026348 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "V8DocumentFragment.h"
#include "V8Node.h"

namespace Arabica {
namespace DOM {

v8::Persistent<v8::FunctionTemplate> V8DocumentFragment::Tmpl;
bool V8DocumentFragment::hasInstance(v8::Handle<v8::Value> value) {
	return getTmpl()->HasInstance(value);
}

}
}