如何解析Stylus错误消息输出

时间:2016-06-23 13:03:42

标签: regex stylus

我试图解析Stylus二进制文件生成的错误消息,例如来自documentation的此示例错误:

  ParseError: test.styl:3:16
    1| body
    2|    form input
    3|      == padding 5px
  ---------------------^
    4|


  illegal unary "==", missing left-hand operand

我基本上是在获取文件名,行和列之后,以及最后的错误消息。由于似乎没有控制输出详细程度的选项,我需要忽略所有以空格(后跟数字)或破折号开头的行。

以下是我目前所拥有的内容:.*Error: (.+):(\d+):(\d+)\n(?:\W+.*\n)+(.*\n)

虽然这可能不是理想的模式,但真正的问题是手写笔可能会输出几个额外的线条来破坏模式。

illegal unary "==", missing left-hand operand

    at Parser.error (/usr/local/lib/node_modules/stylus/lib/parser.js:259:11)
    at Parser.equality (/usr/local/lib/node_modules/stylus/lib/parser.js:1905:23)
    at Parser.typecheck (/usr/local/lib/node_modules/stylus/lib/parser.js:1886:21)
    at Parser.logical (/usr/local/lib/node_modules/stylus/lib/parser.js:1873:21)
    at Parser.ternary (/usr/local/lib/node_modules/stylus/lib/parser.js:1857:21)
    at Parser.negation (/usr/local/lib/node_modules/stylus/lib/parser.js:1849:17)
    at Parser.expression (/usr/local/lib/node_modules/stylus/lib/parser.js:1828:24)
    at Parser.stmt (/usr/local/lib/node_modules/stylus/lib/parser.js:818:25)
    at Parser.statement (/usr/local/lib/node_modules/stylus/lib/parser.js:685:21)
    at Parser.block (/usr/local/lib/node_modules/stylus/lib/parser.js:865:21)

上面的模式将正确捕获文件名,行和列,但始终使用错误日志中的最后一行 - 而不是我之后的错误消息。

如何可靠地捕获错误消息?

1 个答案:

答案 0 :(得分:1)

利用此特定输出结构,您可以使用编号代码行后面的单个换行符(?:\n)+

然后你有:

((.*Error): (.+):(\d+):(\d+))\n(?:\ +.*\n)+(?:\n)+(.*)

说明:

# First line with matching error, file name, line, column
((.*Error): (.+):(\d+):(\d+))\n   

# Non-matching group for lines starting with whitespace and multiple characters after
(?:\ +.*\n)+                      

# Non-matching group for at least one newline
(?:\n)+                           

# Lastly, match single line at the end
(.*)                     

示例: https://regex101.com/r/uQ7dM5/1