Render file name and position in errors from JS library stubs

This commit is contained in:
Andrey Breslav
2014-03-27 19:43:20 +04:00
parent c74542c72e
commit bcc6843835
4 changed files with 20 additions and 5 deletions
@@ -128,8 +128,7 @@ public class CompilerOutputParser {
message.setLength(0);
String rawPath = attributes.getValue("path");
path = rawPath == null ? null : rawPath;
path = attributes.getValue("path");
line = safeParseInt(attributes.getValue("line"), -1);
column = safeParseInt(attributes.getValue("column"), -1);
}