Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
321 views

How to handle errors during parsing in F#

I'm using fslex/fsyacc utilities for my F# Lexer and Parser. If input text has incorrect syntax it is necessary to know place where it happens. It is possible to determine incorrect lexeme (token) ...
5
votes
2answers
440 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
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
115 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
4answers
163 views

Is it possible to define types that depend on each other and are defined in separated files?

I am trying to implement a library with extended parsing capabilities. I decided that I will use fsyacc because I knew it from the university. Unfortunately I encountered following problem. I ...
3
votes
1answer
295 views

Are parsers generated by FSYacc thread safe?

If I generate a parser using FSYacc will it be thread safe? The only reason I ask is because the functions Parsing.rhs_start_pos and Parsing.symbol_end_pos don't appear to have any state passed ...
2
votes
1answer
97 views

Meaningful errors during parsing with FSyacc

I'm using fsyacc/fslex from F# Power Pack to parse some source code. To detect errors I use the following code: use inputChannel = new StreamReader(File.OpenRead tempFileName) let lexbuf = ...
2
votes
1answer
121 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
4answers
113 views

F# pattern matching: how to match a set of possible types that share the same parameters?

I'm new to F# and not quite familiar with the whole pattern matching idea. I tried to search for a better solution to my problem but I fear I can't even express the problem properly – I hope the ...
2
votes
1answer
86 views

Fsyacc: an item with the same key has been added

I'm starting to play with Fslex/Fsyacc. When trying to generate the parser using this input Parser.fsy: %{ open Ast %} // The start token becomes a parser function in the compiled code: %start ...
2
votes
2answers
147 views

c -> c# translation, tools

I want to translate a C application to .Net and thinking on how to automate the task. I don't need to "parse" and compile C files, rather I want to re-create a project structure, create a .Net classes ...
2
votes
2answers
137 views

What is the fsyacc equivalent for the following ocamlyacc code?

I'm working on a toy compiler using F#, i.e., the combo of FsLex and FsYacc. To get familiar with them, I've read the Lexer/Parser chapter of Expert F# (v2) book (a good book btw). Right now, I've ...
2
votes
2answers
358 views

fslex lexing javascript regular expressions

I am attempting to lex javascript regular exression literals. These start with a "/" and end with a "/" (and sometimes some other modifiers). The issue is that the only way to determine whether it ...
1
vote
1answer
93 views

Eliminating shift/reduce errors for binary ops

fsyacc is emitting shift/reduce errors for all binary ops. I have this recursive production: scalar_expr: | scalar_expr binary_op scalar_expr { Binary($2, $1, $3) } Changing it to ...
1
vote
1answer
59 views

Why is this fsyacc input producing F# that does not compile?

My fsyacc code is giving a compiler error saying a variable is not found, but I'm not sure why. I was hoping someone could point out the issue. %{ open Ast %} // The start token becomes a parser ...
1
vote
2answers
236 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
87 views

Is it possible to use FsYaac parser developed for one language as part of parsing process for other language?

I'm implementing parsing and expression evaluation for two languages L1 and L2. Important thing is that L1 can be used as separate language or as a part of L2, and L2 contains only several keywords, ...
1
vote
1answer
109 views

fsyacc: allowing operators to be defined in language

Does fsyacc have some way to deal with operators that are introduced at parse time? I'm trying to build a parser for Kaleidoscope which is a toy language used as an example for the LLVM tutorial. ...
1
vote
2answers
188 views

Extending example grammar for Fsyacc with unary minus

I tried to extend the example grammar that comes as part of the "F# Parsed Language Starter" to support unary minus (for expressions like 2 * -5). I hit a block like Samsdram here Basically, I ...
1
vote
1answer
221 views

Error in example grammar for Fsyacc?

So I am trying to write a compiler in F# and have been looking at the Fslex and Fsyacc tools that come with the F# powerpack. There is a sample project that takes care of the external build tools that ...
1
vote
2answers
580 views

Representing optional syntax and repetition with OcamlYacc / FsYacc

I'm trying to build up some skills in lexing/parsing grammars. I'm looking back on a simple parser I wrote for SQL, and I'm not altogether happy with it -- it seems like there should have been an ...
0
votes
2answers
190 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
150 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 ...