I'm using libclang+python binding to parse the cpp files, but it fails to parse the following class:
class ReadableStreamBytesConsumer::OnFulfilled final : public ScriptFunction {
static v8::Local<v8::Function> CreateFunction(){}
}
libclang does not extract the function "CreateFunction()" for me. However, if I erase ReadableStreamBytesConsumer and make the code like:
class OnFulfilled final : public ScriptFunction {
static v8::Local<v8::Function> CreateFunction(){}
}
It works well, but I need to parse the first piece of code, anyone can help here?