我使用F#Power Pack中的fsyacc/fslex來解析某些源代碼。使用FSyacc解析期間有意義的錯誤
爲了檢測我用下面的代碼中的錯誤:
use inputChannel = new StreamReader(File.OpenRead tempFileName)
let lexbuf = Lexing.LexBuffer<_>.FromTextReader inputChannel
let ast = try
Parser.start Lexer.tokenize lexbuf
with e ->
let pos = lexbuf.EndPos
let line = pos.Line
let column = pos.Column
let message = e.Message
let lastToken = new System.String(lexbuf.Lexeme)
printf "Parse failed at line %d, column %d:\n" line column
printf "Last loken: %s" lastToken
printf "\n"
exit 1
但是,當這個代碼拋出的解析多行源文件中的錯誤信息,我越來越錯了行和列的位置:
Parse failed at line 0, column 10899:
我怎樣才能正確地得到行號在哪個錯誤發生?
一個規則來手動增加行數爲什麼不對它進行調試?你也可以添加fslex項目來調試它 – Cynede