static v8::Local<v8::Function> createFunction(ScriptState* scriptState, AcceptConnectionObserver* observer, ResolveType type)
 {
     ThenFunction* self = new ThenFunction(scriptState, observer, type);
     return self->bindToV8Function();
 }
示例#2
0
 static v8::Handle<v8::Function> createFunction(ScriptState* scriptState, RespondWithObserver* observer, ResolveType type)
 {
     ThenFunction* self = new ThenFunction(scriptState, observer, type);
     return self->bindToV8Function();
 }