Gerwin Klein
Gerwin Klein
I think with the drastic memory reduction of https://github.com/jflex-de/jflex/pull/697 memory pressure is low enough now that we can keep using `int` as default. If you run into a scenario where...
Turns out this is a duplicate of #769, fixed in #797. The next release will contain the fix.
https://github.com/jflex-de/jflex/pull/1005 has now moved the Bazel build to GitHub actions as well. The cache is implemented locally with the GH cache action.
Deploying the jflex maven plugin site doesn't make that much sense, because it would deploy the snapshot version, not the release version. We had already removed this from Travis quite...
This can already be implemented by either always returning something in each action or by calling a method that does some default action in each method. I.e. the feature may...
Closing this, because I don't think it makes sense to deploy the snapshot version. The snapshot version is not stable and should not be used outside JFlex development.
Looks all good now, this has come together really nicely. Thanks again for your contribution and patience.
(rebased and resolved conflicts)
#1045 now implements the token size limit directly in JFlex using the `%token_size_limit` directive. That means, after the 1.9.0 release the manual should no longer be necessary.
> I add some blocks in structures.bf and generate the corresponding struct in structures_gen.h, but how do I use Bitfield to generate the function I need?(just like xxx_new and xxx_ptr_get_xxx)...