Tagged Questions

Fslex is a F# variant of lex, a program that generates lexical analyzers ("scanners" or "lexers"). Fslex is commonly used with the fsyacc parser generator. Fslex is included in F# PowerPack; for detailed documentation, please visit ...

learn more… | top users | synonyms

5
votes
2answers
480 views

F# fslex fsyacc mature for production code?

After reading a 2 year old webpage really ripping fslex/fsyacc, buggy, slow, stupid etc. compared to their OCamel counterparts i wonder what would be ones best bet for lexing parsing needs? Ive used ...
5
votes
1answer
277 views

Lua long strings in fslex

I've been working on a Lua fslex lexer in my spare time, using the ocamllex manual as a reference. I hit a few snags while trying to tokenize long strings correctly. "Long strings" are delimited by ...
5
votes
3answers
942 views

FSLex example solution?

I've been using C/lex for a long time and would like to use F#/fslex now. I'm comparably well off in C# and in the process of learning F#. The only thing is that I can't see any project example or ...
5
votes
2answers
1k views

What is the difference between lex/yacc and fslex/fsyacc?

I'm learning F# because I'd like to write a lexer and parser. I have a tiny bit of experience with this sort of processing but really need to learn it properly as well as F#. When learning the ...
3
votes
2answers
122 views

How to capture a string without quote characters

I'm trying to capture quoted strings without the quotes. I have this terminal %token <string> STRING and this production constant: | QUOTE STRING QUOTE { String($2) } along with these ...
3
votes
2answers
167 views

FsLex changed with latest PowerPack?

I've been working on a compiler for a while but after changing to PowerPack 1.9.9.9 and the release version of VS2010 I'm no unable to compile the following line: let lexbuf = Lexing.from_string text ...
2
votes
1answer
126 views

Should I use Workflow or fsYacc?

I have a very simple DSL I need to parse on a .Net platform. Not being very experienced with parsers, I have been looking at examples using F# (fsLex, fsYacc, FParsec). I am not that familiar with F#, ...
2
votes
1answer
94 views

How to deal with nested comments in FsLex

There are single and multi-line comments available, like in C. How to describe the rules for the lexer to ignore all the comments, even nested, such as these: // comment /* nested comment /* and ...
2
votes
3answers
224 views

F# Inline Function Specialization

My current project involves lexing and parsing script code, and as such I'm using fslex and fsyacc. Fslex LexBuffers can come in either LexBuffer<char> and LexBuffer<byte> varieties, and ...
2
votes
3answers
374 views

Expecting a LexBuffer<char> but given a LexBuffer<byte> The type 'char' does not match the type 'byte'

Type mismatch. Expecting a LexBuffer<char> but given a LexBuffer<byte> The type 'char' does not match the type 'byte' This is the error message that I am getting ...
1
vote
0answers
97 views

Fslex, binary file lexing

Is there any ability to lexemize binary file formats (e.g. jpeg images) with Fslex (with no readability lacks) or i should write my own lexer/use something like fparsec?
1
vote
2answers
265 views

What to choose fsyacc/fslex or FParsec?

I need to parse simple DSL language like the following: import "library.txt" def <int, bool, byte> main(int param1, bool param2) { var a = f4(param1); // or var d = f1(f2(f3(f4(param1)))); ...
1
vote
1answer
100 views

FSLex Unknown Error

I got some problem with my FSLex which I can't solve... All I know is that fslex.exe exited with code 1... The F# code at the top was tested in F# Interactive, so the problem isn't there (I can't see ...
0
votes
1answer
151 views

How to specify unicode characters in patterns for fslex

What is the correct way to specify Unicode characters in pattern for FSharp Lexer. Following code is not compiled with the FsLex.exe utility: let lexeme lexbuf = LexBuffer<char>.LexemeString ...
0
votes
2answers
196 views

Crazy errors with FsLex and FsYacc

I am trying to compile this project: http://ramon.org.il/Here.zip But I get a bunch of non-sense errors. They got text I am familiar with, but in the position there is nothing like that (like ...
0
votes
2answers
151 views

F# 2.0 with Powerpack 2.0, fslex error 1

In namespace RSLispV3.RunTime: http://pastebin.com/XNb9qi11 LispParser.fsy: http://pastebin.com/pymF1Vvm LispLexer.fsl: http://pastebin.com/pfXdDuxs I got in MSBuild the PowerPacks targets, calling ...