How does the LLVM class work? #232
-
|
Some methods from this package seem to be calling non-existent methods in the public static LLVMBuilderRef Create(LLVMContextRef C) => LLVM.CreateBuilderInContext(C);But there isn't a method in |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Not sure what you mean, the API clearly exists right here: https://github.com/dotnet/LLVMSharp/blob/main/sources/LLVMSharp.Interop/llvm/LLVM.cs#L2263 If you're trying to find these via Using something like a local clone of the repo in VS or https://source.clangsharp.dev will give a better experience in many cases. |
Beta Was this translation helpful? Give feedback.
Not sure what you mean, the API clearly exists right here: https://github.com/dotnet/LLVMSharp/blob/main/sources/LLVMSharp.Interop/llvm/LLVM.cs#L2263
If you're trying to find these via
GitHub Search, then there are limits as it doesn't index all files: https://docs.github.com/en/search-github/github-code-search/about-github-code-search#limitationsUsing something like a local clone of the repo in VS or https://source.clangsharp.dev will give a better experience in many cases.