Skip to content

Commit

Permalink
Code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
buffer committed Jul 16, 2024
1 parent 59df25d commit a08fe27
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/Wrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,6 @@ void CPythonObject::SetupObjectTemplate(v8::Isolate *isolate, v8::Handle<v8::Obj

clazz->SetInternalFieldCount(1);
clazz->SetHandler(v8::NamedPropertyHandlerConfiguration(NamedGetter, NamedSetter, NamedQuery, NamedDeleter, NamedEnumerator));
// clazz->SetIndexedPropertyHandler(IndexedGetter, IndexedSetter, IndexedQuery, IndexedDeleter, IndexedEnumerator);
clazz->SetHandler(v8::IndexedPropertyHandlerConfiguration(IndexedGetter, IndexedSetter, IndexedQuery, IndexedDeleter, IndexedEnumerator));
clazz->SetCallAsFunctionHandler(Caller);
}
Expand Down

0 comments on commit a08fe27

Please sign in to comment.