summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins/datamodel/ecmascript/v8/dom/V8Comment.cpp
blob: e470a701d0ea6044a6496a63116ac336a025c9de (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);
  }

} 
}