The tag has no wiki summary.

learn more… | top users | synonyms

-4
votes
0answers
22 views

Looking for parser generator [closed]

I was wondering if exists a parser generator with all this features: lexer included with full Unicode support; glr algorithm; automatic error recovering; AST output; free; Parser language can be ...
0
votes
2answers
105 views

Bison C++ multiple error recovery with missing semi colon

I'm devloping my own compiler, and I hava problem with error recovery design in panic mode for java grammer. I thought about multiple solutions, but real question: How I could do that with bison ...
2
votes
1answer
223 views

How to stop ANTLR from suppressing syntax errors?

So I'm writing a compiler in Java using ANTLR, and I'm a little puzzled by how it deals with errors. The default behavior seems to be to print an error message and then attempt, by means of token ...
0
votes
1answer
163 views

bison error recovery

I have found out that I can use 'error' in the grammar rule as a mechanism for error recovery. So if there was an error, the parser must discard the current line and resume parsing from the next line. ...
0
votes
6answers
212 views

Recoverying from exceptions

In our application (c++) we load 3rd party DLLs using LoadLibrary. Sometimes these DLLs cause exceptions, such as "Access violation reading location 0x00000000..". Is it possible to recover from such ...
0
votes
1answer
152 views

What is ANTLR3 error recovery method?

This seems to be a theoretical question. As I far as I know ANTLR3 handles errors itself using its recover(###) method. I want to know what the method ANTLR3 uses for error recovery. (i.e. ...
0
votes
0answers
539 views

Howto: MySQL InnoDB corruption auto-repair after power failure?

I have a temperature recording application running on linux with an Intel Atom machine with SSD as hardware. The application constantly inserts temperature data into InnoDB (4 records every 5 ...
0
votes
1answer
197 views

Is this LimitedInputStream correct?

I've written a class called LimitedInputStream. It wraps around an existing input stream to limit the number of bytes read from it to a specified length. It's meant as an alternative to: byte[] data ...
1
vote
0answers
77 views

Sun (or Oracle) JDK parser and error recovery technique

Does anyone know what parsing and error recovery technique used by Sun (or Oracle) JDK parser? I'm interested especially in the high quality error messages produced (exact error location + related ...
0
votes
0answers
106 views

Error recovery in XHTML parser

I'm trying to build a XHTML simple browser using JavaCC but I faced a problem at Error recovery .. I tried to use deep error recovery by try { } catch (ParseExeption) { SkipTo(String) } and ...
1
vote
1answer
140 views

GLR parser with error recovery: too much alternatives when there are errors in input

Preamble I have written GLR-parser with error recovery. When it encounters an error it splits into following alternatives: Insert the expected element into input (may be the user just missed it) ...
1
vote
1answer
485 views

nhibernate error recovery

I downloaded Rhino Security today and started going through some of the tests. Several that run perfectly in isolation start getting errors after one that purposely raises an exception runs though. ...
1
vote
2answers
283 views

AST with fixed nodes instead of error nodes in antlr

I have an antlr generated Java parser that uses the C target and it works quite well. The problem is I also want it to parse erroneous code and produce a meaningful AST. If I feed it a minimal Java ...
69
votes
22answers
5k views

Is “Out Of Memory” A Recoverable Error?

I've been programming a long time, and the programs I see, when they run out of memory, attempt to clean up and exit, i.e. fail gracefully. I can't remember the last time I saw one actually attempt to ...