Fslex is a F# variant of lex, a program that generates lexical analyzers ("scanners" or "lexers"). Fslex is commonly used with fsyacc, the parser generator.

learn more… | top users | synonyms

0
votes
1answer
72 views

F# integer file directive

I've been using fslex and fsyacc, and the F# source files (.fs they generate from the lexer (.fsl) and parser (.fsp) rules refer to the original .fsl (and sometimes to the same .fs source file) all ...
2
votes
3answers
139 views

How to return multiple tokens for one fslex rule pattern?

Using fslex I would like to return multiple tokens for one pattern but I don't see a way how to accomplish that. Even to use another rule function that returns multiple tokens would work for me. I am ...
2
votes
1answer
149 views

How to run fslex.exe from F# PowerPack 2.0.0.0 on Mac?

I am having trouble running FsLex from F# PowerPack 2.0.0.0 on Mac. When I simply run the program I see: $ mono ...
3
votes
1answer
132 views

Can I pass parameters to my fsyacc parser?

I know that it is possible to pass parameters to a lexer: rule tokenize scope = parse | whitespace { tokenize scope lexbuf } | newline { newline lexbuf; ...
1
vote
1answer
258 views

FSlex/FSyacc crash - can't locate FSharp.Core assembly

I'm having an issue with FSlex/FSyacc crashing on my machine. In context this is inside Visual Studio 11 beta running on Windows 8 Consumer Preview (32 bit) running inside a Parallels virtual ...
2
votes
1answer
115 views

Getting FS0035 => Construct is deprecated

In a fsyacc based project, I have this line: type 'a cucomment = string This is the full error description I'm getting: CALast.fs(117,9): error FS0035: This construct is deprecated: This ...
4
votes
2answers
342 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 ...
2
votes
1answer
217 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
0answers
181 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?
2
votes
1answer
240 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 ...
1
vote
2answers
442 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)))); ...
6
votes
2answers
969 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 ...
0
votes
1answer
228 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 ...
2
votes
3answers
339 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 ...
5
votes
1answer
357 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 ...
1
vote
1answer
151 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 ...
3
votes
2answers
252 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 ...
0
votes
2answers
240 views

Crazy errors with FsLex and FsYacc [closed]

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
196 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 ...
4
votes
3answers
516 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 ...
5
votes
3answers
1k 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 ...
7
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 ...