Sean Farrell

Results 15 comments of Sean Farrell

Sorry about adding to many commits into the PR; I rebased it to limit it to the glow ones.

Sorry about running you CI a bit hot... UWP was not on my radar.

Please hold while I figure out the CMake configure vodoo.

I tried to write a port file and ran into some issues. - vcpkg want stable versions, tag v0.5 is kind of out of date and that CMakeLists.txt does not...

Not OP, but I have the same problem. Here is a minimal example: #include #include class Base { public: ~Base() = default; virtual void tick() = 0; }; class MockBase...

I can not reproduce the issue anymore. I am using gtest 1.12.1 and vcpkg 24caf7. ``` [==========] Running 2 tests from 1 test suite. [----------] Global test environment set-up. [----------]...

I agree with the assertion that pegjs needs the ability to skip tokens. I may look into it, since if you want to write a serious grammar you will get...

@waTeim Actually no. Traditionally the parsing process is split into lexing and parsing. During lexing every character is of significance, that including whitespaces. But these are then lexed into a...

Ok then I misunderstood you. There may be cases for lexer states, but that is a totally different requirement and IMHO outside of the scope of peg.js.

@andreineculau Because your grammar is whitespace sensitive, this is not applicable. The discard tokens would be part of the grammar, the lexing part to be exact. I don't know what...