Giter Site home page Giter Site logo

Comments (3)

katef avatar katef commented on July 4, 2024

it lists cases for all 254 symbols that are not \n

This has to be a bug in the IR i think - one of the existing strategies should cater for exactly that.

If you build with bmake -r DEBUG=1:

; ~/gh/libfsm/build/bin/re -pl c '^([^\\\n]|\\t)'
re: src/libfsm/print/ir.c:422: make_state: Assertion `fsm_iscomplete(fsm, state)' failed.
zsh: abort      ~/gh/libfsm/build/bin/re -pl c '^([^\\\n]|\\t)'

either that state should've been made complete, and wasn't. Or fsm_iscomplete() is wrong.

from libfsm.

katef avatar katef commented on July 4, 2024

I think this is another instance of #120.

from libfsm.

katef avatar katef commented on July 4, 2024

Confirmed this is the same issue as #120, addressed in PR #128.

; ./build/bin/re -pl c '^([^\\\n]|\\t)'    
#include <assert.h>
#include <stdio.h>

int
fsm_main(int (*fsm_getc)(void *opaque), void *opaque)
{
        int c;

        assert(fsm_getc != NULL);

        enum {
                S0, S1, S2
        } state;

        state = S0;

        while (c = fsm_getc(opaque), c != EOF) {
                switch (state) {
                case S0: /* start */
                        switch ((unsigned char) c) {
                        case '\\': state = S2; break;
                        case '\n': return TOK_UNKNOWN;
                        default: state = S1; break;
                        }
                        break;

                case S1: /* e.g. "a" */
                        break;

                case S2: /* e.g. "\\" */
                        switch ((unsigned char) c) {
                        case 't': state = S1; break;
                        default:  return TOK_UNKNOWN;
                        }
                        break;

                default:
                        ; /* unreached */
                }
        }

        /* end states */
        switch (state) {
        case S1: return 0x1; /* "^([^\\\n]|\\t)" */
        default: return EOF; /* unexpected EOF */
        }
}

from libfsm.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.