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

}
}