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

namespace Arabica {
namespace DOM {

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

}
}