Ali Rizvi-Santiago

Results 132 comments of Ali Rizvi-Santiago

For the record, I just don't use marks anymore. They're too limited.

In case you guys want this, I needed something pretty similar at one point and I wrote some pretty hacky-looking code that combines an iterator with a list. It adds...

Found some good implementations of this: - Rust has an implementation: https://docs.rs/crate/msvc-demangler/0.1.0/source/src/lib.rs - @rui314 has an implementation in C++: https://github.com/rui314/msvc-demangler/blob/master/MicrosoftDemangle.cpp

As someone mentioned it on discord, here's a few more references: https://github.com/gimli-rs/cpp_demangle https://mearie.org/documents/mscmangle/ This python implementation seems to convert things to an ast, but it's from 2017 and misses a...

Hey @rui314, no worries. I wasn't planning on lifting it, although I definitely truly appreciate the implementation. I need an actual AST that's produced to extract the tokens I need...

Probably going to be releasing this PR along an alpha-beta release schedule as I'm not 100% sure how much stuff I might've broken, and it's going to take me a...

So, PRs #80, #81, #82, and #83 are all pre-requisites. This PRs do things like add wrappers, conditionals, etc. for some of the common-language stuff that was broken by Python3.

Once all the pre-requisites get merged, then PR #84 should add support for Python3. This will require a ton of testing, and as such will be tested in stages. Fucking...

PR #84 was finally merged into the master branch which means that we now have support for both Python2 _and_ Python3. The next thing that will need to be done...

The documentation has been updated to include Python3 support, but it's still being built with Python2. This is pretty much the only hold-up. I'm working on issue #6, and probably...