Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Non-tabular lexer option #24

Closed
Dervall opened this issue Apr 2, 2012 · 1 comment
Closed

Non-tabular lexer option #24

Dervall opened this issue Apr 2, 2012 · 1 comment
Milestone

Comments

@Dervall
Copy link
Owner

Dervall commented Apr 2, 2012

In certain cases the user might not want a tabular lexer but instead run with the in-memory state machine as it stands. This functionality got implemented with the improved debug output.

When constructing a lexer give the user the option to run either the:

  • NFA. This is the fastest to construct but the slowest to run
  • DFA: This is a medium way. Takes longer to construct and is quite fast to run
  • Table: Super-fast to run but also slow to construct.
@Dervall
Copy link
Owner Author

Dervall commented Apr 26, 2012

Fixed for dev-1.3.0

@Dervall Dervall closed this as completed Apr 26, 2012
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant