Kevin Nowaczyk
Kevin Nowaczyk
That also does not work.
Wow, I’m thrilled that you summoned me to an issue, as if I may be a person who’s opinion is worth hearing. To be honest, I am a chemical engineer,...
I don't think this is the problem. As long as both the compression and decompression steps pack and unpack the data consistently. it will work. Instead it looks like there...
I have a mostly complete grammar for VBA 7.1, which might be close to .Net https://github.com/Beakerboy/grammars-v4/tree/coverage/vba/vba7_1 PYPI has a python module for the Lexer and Parser as well: https://pypi.org/project/antlr4-vba/ I’m...
VBA files have a required module header similar to: ``` Attribute VB_Name = “Foo” ``` since the example is missing that, it will not parse. You can try it in...
~Is the file missing a newline character at the end?~ Ah, it’s a class. In VBA, class files have a different header. ``` VERSION 1.0 CLASS BEGIN MultiUse = -1...
I just submitted a VBA pull request as well. #3881 Let me know if you have any advice on what to do or not to do regarding ANTLR and Linting...
@Xenios91 would it be worthwhile adding some whitespace to one of the line numbered lines, to demonstrate that that case fails under the existing grammar, but passes under the new...
@Xenios91 The VBA editor that ships with excel automatically strips trailing whitespace out of a line label. If the line label is on the same line as a statement, there...
> being generated by something like apache poi … I had not heard of Apache POI, so I looked it up. I’ve been working on my own OLE file writer...