summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/datamodel/ecmascript/v8/dom/V8DocumentFragment.cpp
blob: e6bec84809104a2fdcbc9e558d3a0c02928700fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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);
  }

} 
}